-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1005 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
33
{
"name": "sort_visualizer",
"version": "1.0.0",
"description": "Viuzualing sorting and search algorithms",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix client",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"die": "killall node",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false cd client && npm install --only=dev && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjjply42/Sorting-Visualizer.git"
},
"author": "mjjply42",
"license": "ISC",
"bugs": {
"url": "https://github.com/mjjply42/Sorting-Visualizer/issues"
},
"homepage": "https://github.com/mjjply42/Sorting-Visualizer#readme",
"devDependencies": {
"nodemon": "^2.0.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^5.0.2",
"express": "^4.17.1"
}
}