-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.19 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
66
{
"name": "react-fullstack-boilerplate",
"version": "1.0.0",
"main": "server/index.js",
"repository": "https://github.com/mdfaizan7/react-fullstack-boilerplate.git",
"author": "mdfaizan7 <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"esm": "^3.2.25",
"express": "^4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0"
},
"scripts": {
"serve": "yarn build && cross-env NODE_ENV=production ts-node server",
"build-ts": "tsc",
"build": "webpack --mode production --optimize-minimize",
"server": "ts-node server",
"dev": "concurrently \"yarn watch-server\" \"yarn watch-client\"",
"watch-server": "nodemon --exec ts-node --files --ignore \"./client/\" server",
"watch-client": "webpack-dev-server --open --host 0.0.0.0",
"lint": "tsc --noEmit && eslint \"**/*.{ts,tsx}\"",
"lint-fix": "tsc --noEmit && eslint \"**/*.{ts,tsx}\" --fix",
"test": "echo \"Error: No tests specified\" && exit 1"
},
"devDependencies": {
"@types/compression-webpack-plugin": "^4.0.1",
"@types/copy-webpack-plugin": "^6.0.0",
"@types/express": "^4.17.8",
"@types/html-webpack-plugin": "^3.2.3",
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/node": "^14.10.1",
"@types/node-sass": "^4.11.1",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/terser-webpack-plugin": "^4.1.0",
"@types/webpack": "^4.41.22",
"@types/webpack-dev-server": "^3.11.0",
"@types/workbox-webpack-plugin": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"compression-webpack-plugin": "^5.0.2",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "^6.1.0",
"cross-env": "^7.0.2",
"css-loader": "^4.2.1",
"eslint": "^7.7.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.11.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"sass-loader": "^9.0.3",
"terser-webpack-plugin": "^4.2.0",
"ts-loader": "^8.0.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^5.1.3"
}
}