-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.71 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
{
"name": "spaceframework",
"version": "1.3.0",
"description": "A powerful responsive SCSS framework build with typography standards in mind.",
"repository": "https://github.com/HarwinBorger/SpaceFramework",
"homepage": "https://spaceframework.dev",
"keywords": [
"scss",
"framework",
"css",
"typography",
"baseline",
"capline",
"html",
"grid"
],
"author": "Harwin Borger <[email protected]>",
"license": "GPL-3.0-only",
"scripts": {
"start": "NODE_ENV=development webpack-dashboard webpack-dev-server",
"build": "NODE_ENV=production webpack",
"jest": "jest --env=node",
"stylelint": "stylelint 'scss/**/*.scss'",
"stylelint:fix": "stylelint 'scss/**/*.scss' --fix",
"test": "concurrently 'npm run stylelint' 'npm run build' 'npm run jest'",
"update:vendor": "./scripts/normalize.sh",
"version": "./scripts/version.sh",
"version:dep": "./scripts/dep-npm-version.sh"
},
"devDependencies": {
"autoprefixer": "^9.8.6",
"concurrently": "^5.3.0",
"css-loader": "^3.6.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.10",
"dart-sass": "^1.25.0",
"glob": "^7.1.6",
"husky": "^3.1.0",
"jest": "^26.6.3",
"matchdep": "*",
"mini-css-extract-plugin": "^0.8.2",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"postcss-scss": "^2.1.1",
"sass-loader": "^8.0.2",
"sort-css-media-queries": "^1.5.2",
"style-loader": "^1.3.0",
"stylelint": "^13.9.0",
"stylelint-order": "^3.1.1",
"stylelint-scss": "^3.18.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"sass-true": "^6.0.1",
"webpack-dashboard": "^3.3.0"
},
"dependencies": {
"normalize.css": "*"
}
}