This repository has been archived by the owner on Oct 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.9 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
{
"name": "wellcome",
"version": "0.0.1",
"scripts": {
"start": "gulp",
"deploy-to-staging": "gulp clean && gulp build && publisssh ./public/build zooniverse-static/preview.zooniverse.org/wellcome && gulp clean",
"deploy-to-beta": "gulp clean && gulp build && publisssh ./public/build zooniverse-static/www.diagnosislondon.org/beta && gulp clean",
"get-fallback-polyfills": "curl \"$npm_package_config_fallbackPolyfillsURL\" > ./public/fallback-polyfills.js",
"get-font-awesome": "rm -rf ./public/font-awesome; curl --location \"$npm_package_config_fontAwesomeURL\" --output ./fa.zip && unzip -q ./fa.zip -d ./fa.tmp && mkdir ./public/font-awesome && mv ./fa.tmp/*/{css,fonts} ./public/font-awesome; rm -rf ./fa.{zip,tmp}",
"postinstall": "npm run get-fallback-polyfills && npm run get-font-awesome"
},
"devDependencies": {
"babel-loader": "^5.3.2",
"babel-runtime": "^5.1.11",
"cjsx-loader": "^1.0.0",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.9.0",
"del": "^0.1.3",
"express": "^4.10.1",
"gulp": "^3.8.9",
"gulp-changed": "^1.0.0",
"gulp-imagemin": "^2.3.0",
"gulp-inject": "^1.0.2",
"gulp-notify": "^2.0.0",
"gulp-rev": "^2.0.1",
"gulp-stylus": "^1.3.4",
"gulp-util": "^3.0.1",
"gulp-watch": "^1.1.0",
"json-loader": "^0.5.2",
"nib": "^1.0.4",
"panoptes-client": "^2.5.2",
"react-a11y": "^0.2.6",
"run-sequence": "^1.0.2",
"stylus": "^0.49.3",
"through2": "^0.6.3",
"webpack": "^1.4.12"
},
"dependencies": {
"markdown-it": "~4.4.0",
"publisssh": "~1.0.0",
"react": "~0.14.1",
"react-dom": "~0.14.1"
},
"config": {
"fontAwesomeURL": "https://github.com/FortAwesome/Font-Awesome/blob/8027c940b6/assets/font-awesome-4.2.0.zip?raw=true",
"fallbackPolyfillsURL": "https://cdn.polyfill.io/v1/polyfill.min.js?features=default,es6,Promise,fetch&flags=gated&ua=(MSIE%209.0)"
}
}