-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "drupal-matter",
"version": "0.0.1",
"private": true,
"main": "webpack.config.js",
"keywords": [
"drupal",
"material-ui"
],
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"commitizen": "^2.9.6",
"cross-env": "^5.0.0",
"css-loader": "^0.28.1",
"cz-conventional-changelog": "^2.0.0",
"del-cli": "^1.0.0",
"extract-text-webpack-plugin": "^2.1.0",
"material-components-web": "^0.11.1",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.5",
"sass-loader": "^6.0.5",
"style-loader": "^0.17.0",
"webpack": "^2.5.1"
},
"scripts": {
"watch": "webpack --progress --colors --watch",
"build": "mkdirp build && webpack --progress --colors",
"build:min": "mkdirp build && cross-env MDC_ENV=production webpack -p --progress --colors",
"clean": "del-cli build/**",
"dist": "npm run clean && npm run build && npm run build:min",
"commit": "git-cz"
},
"caches": {
"libraries": ".libraries"
},
"paths": {
"css": "css",
"js": "js",
"libraries": "lib"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}