-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 934 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
{
"name": "milkyway",
"version": "1.0.0",
"description": "![License](https://img.shields.io/badge/License-MIT-blue)",
"main": "backend/server.js",
"scripts": {
"start": "node backend/server.js",
"build": "cd frontend && npm run build",
"develop": "concurrently \"cd backend && npm run watch\" \"cd frontend && npm run start\"",
"install": "cd backend && npm i && cd ../frontend && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hergemony/milkyway.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hergemony/milkyway/issues"
},
"homepage": "https://github.com/hergemony/milkyway#readme",
"devDependencies": {
"concurrently": "^7.3.0"
},
"dependencies": {
"@stripe/react-stripe-js": "^1.10.0",
"@stripe/stripe-js": "^1.34.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0"
}
}