-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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": "f90.co.uk",
"license": "WTFPL",
"version": "3.3.0",
"repository": {
"type": "git",
"url": "git@github.com:orangespaceman/folio.git"
},
"scripts": {
"build:css": "postcss src/_css/site.css --output src/assets/css/site.css",
"build:js": "webpack --config webpack.config.js",
"build": "npm-run-all build:*",
"lint:css": "stylelint \"src/_components/**/*.css\" && stylelint \"src/_css/**/*.css\"",
"lint:js": "eslint src/_components/ src/_js/",
"lint": "npm-run-all lint:*",
"watch:css": "chokidar 'src/_components/**/*.css' 'src/_css/**/*.css' -c 'npm run build:css'",
"watch:js": "npm run build:js -- --watch",
"watch": "npm-run-all --parallel watch:*",
"prepare": "husky install"
},
"dependencies": {
"layzr.js": "^2.2.2",
"normalize.css": "^8.0.1",
"suitcss-base": "^5.0.0"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"chokidar-cli": "^3.0.0",
"cssnano": "^5.1.15",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-custom-media": "^9.1.2",
"postcss-custom-properties": "^13.1.4",
"postcss-import": "^15.1.0",
"postcss-import-ext-glob": "^2.1.1",
"prettier": "2.8.4",
"stylelint": "^15.3.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-suitcss": "^18.0.0",
"stylelint-selector-bem-pattern": "^2.1.1",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1"
},
"lint-staged": {
"*.js": [
"yarn lint:js",
"prettier --write"
],
"*.css": [
"yarn lint:css",
"prettier --write"
]
}
}