forked from zooniverse/penguinwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
21 lines (21 loc) · 960 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "penguins",
"version": "0.0.1",
"dependencies": {
"marking-surface": "^0.6.4",
"publisssh": "~0.2.4",
"t7e": "~0.3.1",
"zooniverse": "0.7.3",
"zooniverse-readymade": "0.6.5",
"jqueryify": "1.8.0"
},
"scripts": {
"start": "zooniverse-readymade serve --port 3665 --project ./project.coffee --js overrides.coffee --css ./penguin.styl",
"stage": "npm run build && publisssh ./build demo.zooniverse.org/penguins && npm run clean-up",
"beta": "npm run build && publisssh ./build zooniverse-static/www.penguinwatch.org/beta && npm run clean-up",
"comp": "npm run build && publisssh ./build demo.zooniverse.org/penguins_comp && npm run clean-up",
"deploy": "npm run build && publisssh ./build zooniverse-static/www.penguinwatch.org && npm run clean-up",
"build": "zooniverse-readymade build --force --output ./build --js overrides.coffee --css ./penguin.styl",
"clean-up": "rm -rf ./build"
}
}