-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "bionet",
"version": "0.1.0",
"private": true,
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"express-bearer-token": "^2.2.0",
"jsonwebtoken": "^8.4.0",
"moment": "^2.24.0",
"mongoose": "^5.4.7",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react": "^16.7.0",
"react-bootstrap-typeahead": "^3.3.1",
"react-dom": "^16.7.0",
"react-fade-in": "^0.1.6",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.3",
"shortid": "^2.2.14"
},
"scripts": {
"start": "concurrently \"node api/server\" \"serve -s build -l 9001\"",
"dev": "concurrently \"nodemon ./api/server\" \"react-scripts start\"",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"db:save": "mkdir -p api/backup && node ./api/lib/save.js",
"db:restore": "node ./api/lib/restore.js",
"db:clear": "node ./api/lib/clear.js",
"db:seed": "node ./api/lib/seed.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"concurrently": "^4.1.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9"
}
}