This repository has been archived by the owner on May 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
65 lines (65 loc) · 2.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "express-react-typescript",
"version": "4.0.0",
"description": "An Express, React with Typescript and Less boilerplate",
"main": "server/index.js",
"scripts": {
"build": "webpack --mode production",
"start": "npm run build && npm run server",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"server": "tsc -p tsconfig.server.json && node server/",
"dev": "concurrently \"nodemon\" \"npm run client\"",
"server-dev": "nodemon"
},
"author": "Elias Rahmani",
"license": "MIT",
"dependencies": {
"@types/react": "^16.8.16",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.1.10",
"babel-polyfill": "^6.26.0",
"express": "^4.16.3",
"mongoose": "^5.10.11",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^7.2.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@tsconfig/node12": "^1.0.7",
"@types/express": "^4.17.8",
"@types/mongoose": "^5.7.37",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.0.0",
"clean-webpack-plugin": "^1.0.0",
"concurrently": "^4.0.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^2.0.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.6.0",
"nodemon": "^1.17.3",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.0",
"typescript": "^4.1.3",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.3"
}
}