-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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": "kni-scss",
"version": "4.0.0",
"description": "kni css",
"main": "scss",
"engines": {
"node": ">=16 <21",
"npm": ">=8 <11"
},
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run gulp-build",
"deploy": "npm run eslint && npm run stylelint && npm run build",
"eslint": "npx eslint \"./**/*.{js,mjs,jsx,ts,tsx,mdx}\" --max-warnings=0 --fix",
"gulp": "gulp",
"gulp-build": "gulp build-sass",
"http-server": "http-server",
"serve": "cd test && npm run http-server",
"prepare": "husky install",
"prettier": "npx prettier --write .",
"stylelint": "npx stylelint \"**/*.{css,sass,scss}\" --fix"
},
"author": "KNI",
"license": "ISC",
"dependencies": {
"eslint": "^8.23.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-purge-sourcemaps": "^1.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^3.0.0",
"http-server": "^14.1.1",
"husky": "^8.0.1",
"postcss": "^8.4.28",
"postcss-pxv": "^0.8.0",
"sass": "^1.54.9",
"stylelint": "^15.10.2",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0"
},
"devDependencies": {
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
}
}