-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "mtg-social",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node index.js",
"seed": "node seeders/seeds.js",
"server": "nodemon index.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Ryan Helm",
"dependencies": {
"apollo-server": "^2.25.2",
"apollo-server-express": "^2.25.2",
"bcrypt": "^5.0.0",
"concurrently": "^6.2.0",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"faker": "^5.5.3",
"graphql": "^15.4.0",
"graphql-iso-date": "^3.6.1",
"graphql-subscriptions": "^1.2.1",
"graphql-tag": "^2.12.5",
"graphql-upload": "^12.0.0",
"if-env": "^1.0.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.2",
"mongoose-unique-validator": "^2.0.3"
},
"devDependencies": {
"eslint": "^7.30.0"
}
}