-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
59 lines (59 loc) · 1.81 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
{
"name": "madewithwagtail",
"version": "1.0.0",
"private": true,
"author": "Springload",
"license": "MIT",
"main": "manage.py",
"repository": {
"type": "git",
"url": "https://github.com/springload/madewithwagtail"
},
"devDependencies": {
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-prettier": "^2.1.2"
},
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browser-sync": "^2.27.7",
"browserify": "^17.0.0",
"browserify-incremental": "^3.1.1",
"gulp": "^4.0.2",
"gulp-pleeease": "^2.0.2",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.0.0",
"gulp-size": "^2.1.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-svgmin": "^4.1.0",
"gulp-svgstore": "^9.0.0",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"prettier": "^2.5.1",
"sass": "^1.44.0",
"springload-analytics.js": "^2.0.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"scripts": {
"start": "yarn lint:versions -s && yarn watch -s",
"linter:js": "eslint",
"linter:sass": "echo \"SASS linting not implemented yet. Waiting on https://github.com/prettier/prettier/pull/3038 to be merged.\"",
"lint:js": "yarn linter:js -s -- core/frontend/js",
"lint:sass": "yarn linter:sass",
"lint": "yarn lint:versions -s && yarn lint:js -s",
"js": "gulp js",
"css": "gulp css",
"svg": "gulp svg",
"clean": "gulp clean",
"watch": "gulp watch",
"build": "yarn lint:versions -s && NODE_ENV=development gulp build",
"dist": "NODE_ENV=production gulp build",
"deploy": "git push origin master:deploy/production"
}
}