-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "gcss",
"version": "0.1.0",
"description": "Guy's Cascading Style Sheets",
"main": "index.js",
"scripts": {
"commit": "npx git-cz",
"test": "echo \"Error: no test specified\" && exit 1",
"build-sass": "node-sass --output-style expanded --source-map true sass/gcss.sass dist/gcss.css",
"start": "npm run build-sass -- --watch",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"dev": "webpack --config webpack.config.js",
"watch": "npm run dev -- --watch"
},
"keywords": [
"css",
"guya"
],
"author": "Simon Belete <simonbelete@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"autoprefixer": "^9.8.0",
"babel-loader": "^8.1.0",
"clean-css-cli": "^4.3.0",
"commitizen": "^4.1.2",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"cz-conventional-changelog": "^3.2.0",
"file-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"resolve-url-loader": "^3.1.1",
"rfs": "^9.0.2",
"sass": "^1.26.8",
"sass-loader": "^8.0.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"unminified-webpack-plugin": "^2.0.0",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}