-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.53 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "auth-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"dev": "nodemon --exec 'babel-node src/index'",
"test": "npm run lint",
"start": "nf start"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-istanbul": "^0.12.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-resolver": "^1.1.0",
"eslint": "^3.16.1",
"eslint-plugin-babel": "^4.1.0",
"eslint-plugin-react": "^6.10.0",
"foreman": "^2.0.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"axios": "^0.16.1",
"bcrypt": "^0.8.7",
"body-parser": "^1.15.2",
"create-react-app": "1.2.1",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"jwt-simple": "^0.5.1",
"mongoose": "^4.6.8",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4",
"react-router-dom": "^4.1.1",
"react-scripts": "^0.9.5",
"whatwg-fetch": "^2.0.3"
}
}