-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.39 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
{
"name": "quantarium",
"version": "1.0.0",
"description": "quantarium meta project",
"main": "index.js",
"scripts": {
"init": "./node_modules/.bin/meta git update && ./node_modules/.bin/meta yarn install",
"update": "./node_modules/.bin/meta git pull origin master && ./node_modules/.bin/meta yarn install",
"build": "cd ui && yarn run build && cd ../qsim && yarn run build",
"serve-api": "cd api && yarn run serve",
"serve-ui": "cd ui/dist && ../../node_modules/.bin/static-server -p 8080",
"serve-sphere": "cd sphere && ../node_modules/.bin/static-server -p 5000 -o",
"dev-ui": "cd ui && yarn run serve",
"start": "./node_modules/.bin/concurrently -n api,ui,sphere \"yarn run serve-api\" \"yarn run serve-ui\" \"yarn run serve-sphere\"",
"dev": "./node_modules/.bin/concurrently -n api,ui,sphere \"yarn run serve-api\" \"yarn run dev-ui\" \"yarn run serve-sphere\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Th1nkK1D/quantarium.git"
},
"author": "Th1nkK1D",
"license": "ISC",
"bugs": {
"url": "https://github.com/Th1nkK1D/quantarium/issues"
},
"homepage": "https://github.com/Th1nkK1D/quantarium#readme",
"dependencies": {},
"devDependencies": {
"concurrently": "^4.1.0",
"meta": "^1.2.16",
"meta-yarn": "^1.0.0",
"static-server": "^2.2.1"
}
}