forked from covalence-io/barebones-react-typescript-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 939 Bytes
/
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
{
"name": "barebones-react-typescript-express",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"watch:build": "npx webpack -w",
"watch:server": "nodemon dist/server.js",
"dev": "npm-run-all --parallel watch:*",
"start": "node dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.6",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"bootstrap": "^4.5.0",
"css-loader": "^1.0.1",
"express": "^4.17.1",
"node-sass": "^4.14.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"ts-loader": "^5.4.5",
"typescript": "^3.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.3"
}
}