-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.16 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
{
"name": "donate",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"develop": "concurrently \"cd server && npm run watch && npm run seed\" \"cd client && npm start\"",
"install": "cd server && npm i && npm run seed && cd ../client && npm i",
"seed": "cd server && npm run seed",
"build": "cd client && npm run build"
},
"engines": {
"node": "11.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gpaytakov/donate-for-good.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/gpaytakov/donate-for-good/issues"
},
"homepage": "https://github.com/gpaytakov/donate-for-good#readme",
"dependencies": {
"@apollo/client": "^3.6.9",
"@material-ui/icons": "^4.11.3",
"@stripe/react-stripe-js": "^1.9.0",
"@stripe/stripe-js": "^1.32.0",
"apollo-server-express": "^3.9.0",
"graphql": "^16.5.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"react-router-dom": "^6.3.0",
"serve": "^14.0.1"
},
"devDependencies": {
"concurrently": "^7.2.2"
}
}