-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 850 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
{
"name": "stack-jwt-demo-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npx node server.js",
"start:dev": "npm run build && npx node server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx webpack",
"postinstall": "npm run build"
},
"author": "Shek Yu Hong",
"license": "ISC",
"engines": {
"node": ">8.11.3"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"request": "^2.88.0",
"uuidv1": "^1.6.14"
},
"devDependencies": {
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1"
}
}