-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.93 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
{
"name": "springload.github.io",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/springload/springload.github.io"
},
"engines": {
"node": "^4.2.6"
},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browser-sync": "^2.14.0",
"browserify": "^13.1.0",
"bundle-collapser": "^1.2.1",
"gulp": "^3.9.1",
"gulp-imagemin": "^3.0.3",
"gulp-pleeease": "^2.0.2",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"gulp-shell": "^0.5.2",
"gulp-size": "^2.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-svgmin": "^1.2.2",
"gulp-svgstore": "^6.0.0",
"gulp-uglify": "^1.5.4",
"gulp-util": "^3.0.7",
"loose-envify": "^1.2.0",
"uglifyify": "^3.0.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"autotrack": "^1.0.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-svg-icon": "^2.0.0",
"superagent": "^2.3.0"
},
"scripts": {
"start": "npm run lint:versions -s && npm run watch -s",
"lint:versions": "NVM_VERSION=$(cat .nvmrc); NODE_VERSION=$(node --version); echo $NODE_VERSION | grep -q $NVM_VERSION && echo \"✓ running node $NODE_VERSION - all clear\" || (echo \"✗ running node $NODE_VERSION - expected $NVM_VERSION. Use nvm to install the right version.\" && exit 1)",
"lint": "npm run lint:versions -s",
"test:ci": "./bin/ci-test.sh",
"test": "echo 'no tests yet'",
"svg": "gulp svg",
"css": "gulp css",
"js": "gulp js",
"content": "gulp content",
"build": "gulp build",
"dist": "NODE_ENV=production npm run build",
"watch": "gulp watch",
"shrinkwrap": "npm run lint:versions -s && npm shrinkwrap --dev && sed -i 's/https:/http:/g' npm-shrinkwrap.json",
"deploy": "git push origin dev:deploy/production",
"deploy:ci": "./bin/deploy.sh"
}
}