-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.08 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
{
"name": "splash",
"version": "1.0.0",
"description": "Wine pairing application",
"engines": {
"node": "18.16.0"
},
"main": "wine-pairing/server/server.js",
"scripts": {
"start": "node wine-pairing/server/server.js",
"develop": "concurrently \"cd wine-pairing/server && npm run watch\" \"cd wine-pairing/client && npm start\"",
"install": "cd wine-pairing/server && npm i && cd ../client && npm i",
"seed": "cd wine-pairing/server && npm run seed",
"build": "cd wine-pairing/client && npm run build",
"heroku-postbuild": "npm run install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.3.0"
},
"dependencies": {
"@apollo/server": "^4.9.4",
"antd": "^5.8.2",
"apollo-server-core": "^3.12.1",
"apollo-server-express": "^3.12.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"graphql": "^16.8.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^5.8.1",
"mongoose": "^7.0.2",
"nodemon": "^3.0.1"
}
}