-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 902 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
{
"name": "final_project",
"version": "1.0.0",
"description": "my warmup for Codi's final project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"back": "cd back && npm start",
"front": "cd front && npm start",
"start": "concurrently --kill-others-on-fail --names \"back,front\" \"npm run back\" \"npm run front\"",
"postinstall": "cd front && npm install && cd .. && cd back && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HovigKevorkian/final_project.git"
},
"keywords": [
"E-commerce"
],
"author": "H.K.K",
"license": "ISC",
"bugs": {
"url": "https://github.com/HovigKevorkian/final_project/issues"
},
"homepage": "https://github.com/HovigKevorkian/final_project#readme",
"dependencies": {
"body-parser": "^1.19.0",
"concurrently": "^4.1.2"
}
}