-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.01 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
{
"dependencies": {
"jquery": "^3.6.0",
"lazysizes": "^5.3.2",
"magnific-popup": "^1.1.0",
"normalize.css": "^8.0.1",
"sass-mq": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"cssnano": "^4.1.11",
"eslint": "^7.26.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^4.3.8",
"node-sass": "^4.14.1",
"postcss-cli": "^7.1.2",
"postcss-custom-media": "^7.0.8",
"prettier": "^2.3.0",
"standard-version": "^9.3.0",
"stylelint": "^13.13.1",
"stylelint-a11y": "^1.2.3",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.19.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"engines": {
"node": ">=14.0.0"
},
"license": "GPL-3.0-or-later",
"private": true,
"scripts": {
"build": "npm run build:scripts && npm run build:styles",
"build:scripts": "webpack --mode=production",
"build:styles": "node-sass --include-path node_modules/ fieldkit/assets/styles/main.scss fieldkit/style.css",
"commit": "git-cz",
"lint": "npm run lint:scripts && npm run lint:styles",
"lint:scripts": "eslint .",
"lint:styles": "stylelint \"**/*.scss\"",
"postbuild:styles": "postcss fieldkit/style.css -o fieldkit/style.css",
"release": "standard-version",
"watch": "npm run watch:scripts & npm run watch:styles",
"watch:scripts": "webpack --mode=development --watch",
"watch:styles": "node-sass --include-path node_modules/ --watch fieldkit/assets/styles/main.scss fieldkit/style.css"
},
"version": "0.1.6"
}