-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "authentication-in-react-apps",
"version": "1.0.0",
"description": "Authentication in React Applications, Part 2: JSON Web Token (JWT)",
"main": "index.js",
"scripts": {
"start": "nodemon --use-strict index.js",
"bundle": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/vladimirponomarev/authentication-in-react-apps.git"
},
"author": "Vladimir Ponomarev",
"license": "MIT",
"dependencies": {
"bcrypt": "^1.0.1",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"jsonwebtoken": "^7.2.1",
"material-ui": "^0.16.5",
"mongoose": "^4.7.3",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-router": "^3.0.0",
"react-tap-event-plugin": "^2.0.1",
"validator": "^6.2.0"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"nodemon": "^1.11.0",
"webpack": "^1.14.0"
}
}