-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.3 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "boilerplate",
"version": "3.1.0",
"description": "remixed and reduced ds boilerplate",
"main": "public_html/index.html",
"scripts": {
"webpack:dev": "SITE=$site webpack --watch --colors",
"webpack:prod": "NODE_ENV=production webpack --config ./webpack.config.prod.js --colors",
"prod": "npm run webpack:prod",
"dev": "npm run webpack:dev",
"precommit": "lint-staged"
},
"lint-staged": {
"{,!(node_modules)/}**/*.{js,jsx,css}": [
"prettier --write --no-semi --single-quote --jsx-bracket-same-line",
"git add"
]
},
"browserslist": [
"> 5%",
"ie 10"
],
"cssnano": {
"preset": [
"default",
{
"discardComments": {
"removeAll": true
}
}
]
},
"author": "Digital Surgeons",
"license": "MIT",
"devDependencies": {
"autoprefixer": "~7.2.6",
"babel-cli": "^6.26.0",
"babel-core": "~6.26.3",
"babel-loader": "~7.1.5",
"babel-preset-env": "~1.7.0",
"browser-sync": "~2.24.7",
"browser-sync-webpack-plugin": "^1.2.0",
"clean-webpack-plugin": "~0.1.19",
"compiler-webpack-plugin": "0.0.1",
"copy-webpack-plugin": "~4.5.2",
"css-loader": "~0.28.11",
"dotenv-webpack": "~1.5.7",
"ds-css-cli": "^1.0.14",
"eslint": "^3.19.0",
"extract-text-webpack-plugin": "~3.0.2",
"file-loader": "^0.11.2",
"glob": "~7.1.3",
"husky": "^0.14.3",
"lint-staged": "~4.3.0",
"onchange": "~3.3.0",
"optimize-js": "^1.0.1",
"postcss-cssnext": "~2.11.0",
"postcss-import": "~11.1.0",
"postcss-loader": "~2.1.6",
"postcss-object-fit-images": "^1.1.2",
"prettier": "~1.14.3",
"style-loader": "^0.18.2",
"stylelint": "~8.4.0",
"stylelint-config-recommended": "^1.0.0",
"stylelint-order": "^0.6.0",
"stylelint-selector-bem-pattern": "^2.0.0",
"svg-sprite-generator": "0.0.7",
"url-loader": "^0.5.9",
"watchify": "~3.11.0",
"webpack-notifier": "~1.6.0"
},
"dependencies": {
"headroom.js": "^0.9.4",
"jquery": "~3.3.1",
"normalize.css": "^5.0.0",
"object-fit-images": "~3.2.4",
"postcss": "~7.0.4",
"postcss-easy-import": "~3.0.0",
"postcss-scss": "~2.0.0",
"postcss-strip-inline-comments": "~0.1.5",
"precss": "~3.1.2",
"svgxuse": "~1.2.6",
"webpack": "~3.12.0"
}
}