-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.46 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "panoptes",
"version": "0.0.2",
"dependencies": {
"animated-scrollto": "~1.1.0",
"babelify": "~6.4.0",
"classnames": "~2.2.3",
"counterpart": "~0.17.0",
"data-uri-to-blob": "0.0.4",
"debounce": "~1.0.0",
"drag-reorderable": "~0.1.0",
"fast-levenshtein": "~1.0.7",
"history": "~1.17.0",
"jsplumb": "1.7.9",
"lodash.intersection": "~3.2.0",
"lodash.merge": "~2.4.1",
"lodash.pick": "~3.1.0",
"lodash.uniq": "~3.2.2",
"markdownz": "~4.1.2",
"modal-form": "~2.3.0",
"moment": "~2.9.0",
"panoptes-client": "~2.0.0",
"papaparse": "mholt/PapaParse#cada171",
"react": "~0.14.1",
"react-component-resizable": "~0.3.0",
"react-dom": "^0.14.1",
"react-interpolate-component": "~0.8.0",
"react-pullout": "~1.0.1",
"react-router": "~1.0.0",
"react-select": "~0.9.1",
"react-swipe": "~3.0.0",
"react-translate-component": "~0.10.0",
"sort-into-columns": "~1.0.0",
"sugar-client": "~1.0.1",
"swipe-js-iso": "~2.0.1",
"test-shape-closeness": "0.0.1"
},
"devDependencies": {
"babelify": "~7.3.0",
"browserify": "~11.0.1",
"coffee-reactify": "~4.0.0",
"csso": "~1.3.11",
"ejs": "~2.3.3",
"envify": "~3.4.0",
"express": "~4.13.3",
"nib": "~1.1.0",
"publisssh": "~1.0.0",
"stylus": "~0.52.0",
"uglify-js": "~2.4.24",
"watchify": "~3.3.1"
},
"engines": {
"node": "~4.2.3",
"npm": "~2.14.7"
},
"scripts": {
"build": "export NODE_ENV=${NODE_ENV:-production}; ./bin/build.sh",
"check-build-size": "npm run build && cat ./build/vendor.*.js ./build/main.*.js | gzip --best | wc -c",
"postinstall": "./bin/postinstall.sh",
"deploy": "npm run build && publisssh ./build zooniverse-static/www.zooniverse.org/$DEPLOY_SUBDIR",
"deploy-branch": "export DEPLOY_SUBDIR=$(git symbolic-ref --short HEAD); npm run deploy",
"stage": "export DEPLOY_SUBDIR=${DEPLOY_SUBDIR:-panoptes-front-end}; export NODE_ENV=staging; npm run build && publisssh ./build \"zooniverse-static/preview.zooniverse.org/$DEPLOY_SUBDIR\"",
"stage-branch": "export DEPLOY_SUBDIR=\"panoptes-front-end/$(git symbolic-ref --short HEAD)\"; npm run stage",
"stage-branch-with-docker": "./bin/run-through-docker.sh 'npm run-script stage-branch'",
"stage-with-docker": "./bin/run-through-docker.sh 'npm run-script stage'",
"start": "./bin/serve.sh",
"test": "echo 'Integration tests have moved to the panoptes-client library.'"
}
}