forked from codemzy/mern-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "auth-mern-jwt",
"version": "1.0.0",
"description": "Full Stack Auth with MERN and JWT Tokens",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"mongo": "mongod --bind_ip=$IP --dbpath=data --nojournal --rest \"$@\""
},
"author": "codemzy",
"license": "ISC",
"dependencies": {
"axios": "~0.14.0",
"bcryptjs": "~2.4.3",
"body-parser": "~1.15.2",
"cookie-parser": "~1.4.3",
"cors": "~2.8.0",
"dotenv": "~2.0.0",
"express": "~4.14.0",
"jwt-simple": "~0.5.0",
"moment": "~2.15.1",
"mongodb": "~2.2.9",
"morgan": "~1.7.0",
"passport": "~0.3.2",
"passport-jwt": "~2.1.0",
"passport-local": "~1.0.0",
"react": "~15.3.1",
"react-dom": "~15.3.1",
"react-redux": "^4.4.5",
"react-router": "~2.7.0",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"sparkpost": "~1.3.8"
},
"devDependencies": {
"babel-core": "~6.25.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "~6.24.1",
"babel-preset-react": "~6.24.1",
"babel-preset-stage-0": "~6.24.1",
"bootstrap": "~3.3.6",
"jquery": "~2.2.1",
"script-loader": "~0.7.0",
"webpack": "~3.5.6"
},
"engines": {
"node": "4.5.0"
}
}