forked from zooniverse/Milky-Way-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (27 loc) · 997 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": "milky-way-project",
"version": "0.0.1",
"dependencies": {
"fastclick": "~0.6.11",
"ghost-mouse": "~0.1.1",
"haw": "~0.2.9",
"marking-surface": "~0.4.6",
"publisssh": "~0.2.1",
"stack-of-pages": "~0.0.5",
"t7e": "~0.2.3",
"zooniverse": "~0.3.1",
"zootorial": "~0.4.1",
"translator-seed": "~0.1.1"
},
"scripts": {
"start": "haw serve --port 6414",
"stage": "npm run build && npm run publish-staging && npm run cleanup",
"deploy": "npm run build && npm run publish-production && npm run cleanup",
"stage-and-deploy": "npm run build && npm run publish-staging && npm run publish-production && npm run cleanup",
"build": "haw build --force ./build",
"publish-staging": "publisssh ./build demo.zooniverse.org/milky-way-project",
"publish-production": "publisssh ./build www.milkywayproject.org",
"deploy-locale": "seed-translation --project milky_way --env production",
"cleanup": "rm -rf ./build"
}
}