-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 893 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
{
"name": "classified-board",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": "10.6.0"
},
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && npm start",
"dev": "concurrently --names \"server,client\" \"npm run server --silent\" \"npm run client --silent\"",
"heroku-postbuild": "npm install --prefix client && npm run build --prefix client "
},
"author": "canmeepo",
"license": "ISC",
"devDependencies": {
"nodemon": "^1.18.9"
},
"dependencies": {
"apollo-server-express": "^2.3.1",
"bcrypt": "^2.0.1",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"graphql": "^14.0.2",
"graphql-tools": "^4.0.3",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.4.3"
}
}