-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
29 lines (29 loc) · 937 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
{
"name": "sbox",
"version": "1.0.0",
"description": "Mock file transfer application dedicated to simulating a real world codebase",
"main": "index.js",
"scripts": {
"setup-backend": "cd ./backend && npm install",
"setup-frontend": "cd ./frontend && npm install",
"start-backend": "cd ./backend && npm start",
"start-frontend": "cd ./frontend && npm start",
"setup": "npm install && npm-run-all setup-backend setup-frontend",
"start": "npm-run-all --parallel start-backend start-frontend",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emmoistner/sbox.git"
},
"author": "emmoistner",
"license": "MIT",
"bugs": {
"url": "https://github.com/emmoistner/sbox/issues"
},
"homepage": "https://github.com/emmoistner/sbox#readme",
"private": true,
"devDependencies": {
"npm-run-all": "4.1.5"
}
}