This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.84 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
{
"name": "@freshheads/maatcss",
"description": "Extensible, scalable, Sass-based modules that can be used as starting point for UI projects",
"version": "2.0.0",
"engines": {
"node": ">=12.13.0",
"npm": ">=6.0.0"
},
"main": "example.main.scss",
"scripts": {
"test": "npm run lint",
"lint": "./node_modules/.bin/stylelint \"**/*.scss\" --syntax scss",
"docs": "webpack --progress --config webpack.config.js --mode production",
"start": "webpack-dev-server",
"preversion": "npm run docs"
},
"repository": {
"type": "git",
"url": "https://github.com/freshheads/maatcss.git"
},
"keywords": [
"maatcss",
"maat-css",
"sass",
"freshheads",
"bootstrap",
"setup",
"css"
],
"author": "Freshheads",
"license": "MIT",
"bugs": {
"url": "https://github.com/freshheads/maatcss/issues"
},
"homepage": "https://freshheads.github.io/maatcss-docs/",
"dependencies": {
"normalize.css": "^7.0.0"
},
"peerDependencies": {
"sass-mq": "^6.0.0"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"css-loader": "^4.3.0",
"highlight.js": "^10.7.3",
"html-webpack-plugin": "^4.5.2",
"lint-formatter": "^2.0.0",
"mini-css-extract-plugin": "^0.11.3",
"postcss": "^8.4.5",
"postcss-loader": "^4.3.0",
"sass": "^1.49.0",
"sass-loader": "^10.2.1",
"sass-mq": "^6.0.0",
"style-loader": "^1.3.0",
"stylelint": "^13.13.1",
"stylelint-bare-webpack-plugin": "^2.1.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
}
}