forked from springload/madewithwagtail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.64 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
{
"name": "madewithwagtail",
"version": "1.0.0",
"private": true,
"author": "Springload",
"license": "MIT",
"main": "manage.py",
"repository": {
"type": "git",
"url": "https://github.com/springload/madewithwagtail"
},
"engines": {
"node": "^6.8.0",
"npm": "^3.10.8"
},
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browser-sync": "^2.12.7",
"browserify": "^13.0.0",
"browserify-incremental": "^3.0.0",
"gulp": "^3.9.1",
"gulp-pleeease": "^2.0.2",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.1",
"gulp-size": "^2.1.0",
"gulp-sourcemaps": "^1.1.3",
"gulp-svgmin": "^1.2.2",
"gulp-svgstore": "^6.0.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"springload-analytics.js": "^2.0.1"
},
"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)",
"js": "gulp js",
"css": "gulp css",
"svg": "gulp svg",
"clean": "gulp clean",
"watch": "gulp watch",
"build": "NODE_ENV=development gulp build",
"dist": "NODE_ENV=production gulp build",
"lock": "npm run lint:versions -s && npm shrinkwrap --dev && sed -i 's/https:/http:/g' npm-shrinkwrap.json",
"deploy": "git push origin master:deploy/production"
}
}