-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1009 Bytes
/
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
{
"name": "clan.nom_nom_nom",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"server": "node server.js",
"client": "node scripts/start-client.js",
"start": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "node scripts/build.js",
"seed": "node scripts/seedDB.js",
"herokuSeed": "node scripts/herokuSeeds.js",
"installDeps": "yarn && cd client && yarn",
"prepare": "cd client && yarn && yarn run build"
},
"author": "Team 4/5 Hatted",
"license": "MIT",
"devDependencies": {
"concurrently": "^3.5.0",
"eslint": "^4.19.1",
"nodemon": "^1.11.0"
},
"dependencies": {
"axios": "^0.17.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"bootstrap": "^4.1.1",
"cors": "^2.8.4",
"express": "^4.16.2",
"express-session": "^1.15.6",
"express-validator": "^5.1.2",
"mongoose": "^4.13.3",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0"
}
}