-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.15 KB
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
{
"name": "jwt-practice",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack -p --config ./webpack.config.dev.js",
"build:dev": "webpack -d --config ./webpack.config.dev.js --watch",
"start": "node server/server.js",
"start:dev": "nodemon --inspect server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/romcar/JWT-practice.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/romcar/JWT-practice/issues"
},
"homepage": "https://github.com/romcar/JWT-practice#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8"
},
"dependencies": {
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"express": "^4.16.3",
"json-server": "^0.14.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"request": "^2.87.0",
"request-promise": "^4.2.2"
}
}