-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 802 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 802 Bytes
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
{
"name": "hacknyu_turingmachine",
"version": "1.0.0",
"description": "",
"main": "server/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start" : "cd server && npm install && npm run nodemon",
"client": "cd client && npm run start",
"server": "cd server && npm install && npm run nodemon",
"dev": "concurrently -c \"bgMagenta,bgBlue,\" npm:server npm:client",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^7.0.0",
"cors": "^2.8.5",
"nodemon": "^2.0.15",
"path": "^0.12.7",
"react-time-picker": "^4.5.0",
"recharts": "^2.1.9",
"typewriter-effect": "^2.18.2"
}
}