-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.21 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": "blog",
"version": "0.0.0",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git://github.com/liamness/blog.git"
},
"dependencies": {
"html-minifier": "^4.0.0",
"svg4everybody": "^2.1.9"
},
"devDependencies": {
"autoprefixer": "^8.0.0",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"browser-sync": "^2.23.6",
"cssnano": "^4.0.0-rc.2",
"eslint": "^4.18.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-compat": "^2.2.0",
"eslint-plugin-import": "^2.8.0",
"node-sass": "^4.7.2",
"postcss-cli": "^5.0.0",
"svgo": "^1.0.4",
"svgstore-cli": "^1.3.1",
"webpack": "^4.0.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.0.0"
},
"browserslist": [
"last 2 versions",
"not < 0.25%",
"not UCAndroid > 0",
"not OperaMini all"
],
"eslintIgnore": [
"!.eslintrc.js",
"public"
],
"scripts": {
"bash": "/bin/bash",
"build": "yarn clean && ./bin/build.sh",
"clean": "./bin/clean.sh",
"lint": "eslint .",
"watch": "yarn clean && docker-compose up",
"deploy": "netlify deploy --dir public"
}
}