-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.13 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
{
"name": "React-Typescrpt-Express-Webpack-Starter",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "cross-env-shell PROD=false npm-run-all build start:all",
"start:prod": "cross-env-shell PROD=true npm-run-all build start:serverProd",
"start:all": "concurrently -c cyan,magenta -n nodemon_server,tsc_watch -k true \"npm:start:server\" \"npm:start:watch\"",
"start:server": "nodemon --inspect ./dist/server.js",
"start:serverProd": "node ./dist/server.js",
"start:watch": "tsc -p ./tsconfig.backend.json --watch",
"build:backend": "tsc -p ./tsconfig.backend.json",
"build:frontend": "webpack --config ./dist/webpack.config.js",
"build": "npm-run-all lint clean build:backend build:frontend",
"lint": "tslint --project ./tsconfig.json --config ./tslint.json",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf ./dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"typescript": "^4.0.5",
"webpack": "^4.44.2"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/html-webpack-plugin": "^3.2.4",
"@types/node": "^14.14.6",
"@types/react": "^16.9.55",
"@types/react-dom": "^16.9.9",
"@types/webpack": "^4.41.24",
"@types/webpack-dev-middleware": "^3.7.2",
"@types/webpack-hot-middleware": "^2.25.3",
"awesome-typescript-loader": "^5.2.1",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"html-webpack-plugin": "^4.5.0",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"source-map-loader": "^1.1.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^5.0.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
}
}