-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 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
{
"name": "cary-connects-web",
"version": "1.0.0",
"description": "A Web page for Downtown Cary Parking",
"main": "index.js",
"scripts": {
"test": "cd client && npm run test",
"start": "concurrently \"cd backend && node server.js\" \"cd client && npm start\"",
"dev": "concurrently \"cd backend && nodemon server.js\" \"cd client && npm start\"",
"install": "concurrently \"cd backend && npm install\" \"cd client && npm install\"",
"heroku-postbuild": "concurrently \"cd client && npm install\" \"cd backend && npm install\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeForCary/cary-connects-web.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodeForCary/cary-connects-web/issues"
},
"homepage": "https://github.com/CodeForCary/cary-connects-web#readme",
"dependencies": {
"concurrently": "^4.1.0",
"cookies": "^0.7.3",
"mongoose-seed": "^0.5.1",
"react": "^16.8.1",
"react-dom": "^16.7.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"read-pkg-up": "^4.0.0"
},
"devDependencies": {
"react-testing-library": "^5.4.4"
}
}