-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.36 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.36 KB
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
{
"name": "@bitmade/dev-tools",
"version": "4.1.0",
"description": "A package that contains development tools used at Bitmade.",
"author": "Manuel Moritz-Schliesing <manuel@bitmade.de>",
"license": "MIT",
"bin": {
"bitmade-dev-tools": "./bin/bitmade-dev-tools.js"
},
"scripts": {
"format": "prettier --write --single-quote --trailing-comma es5 \"**/*.js\"",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --trailing-comma es5",
"git add"
]
},
"dependencies": {
"autoprefixer": "^7.1.5",
"babel-core": "^6.17.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"browser-sync": "^2.17.3",
"chalk": "^2.1.0",
"clear": "0.0.1",
"cross-spawn": "^5.1.0",
"css-loader": "^0.28.7",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^3.0.1",
"file-exists": "^5.0.0",
"fs-extra": "^4.0.2",
"fs-finder": "^1.8.1",
"lodash": "^4.16.4",
"minimist": "^1.2.0",
"node-sass": "^4.5.3",
"node-twig": "^1.0.0",
"noop-fn": "^1.0.0",
"postcss-loader": "^2.0.7",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.7.1",
"webpack-dev-middleware": "^1.4.0"
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"prettier": "^1.7.4"
}
}