-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 KB
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
{
"private": true,
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.2",
"@htmlacademy/editorconfig-cli": "1.0.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"cssnano": "^5.1.12",
"gh-pages": "^4.0.0",
"html-loader": "^3.1.2",
"html-webpack-plugin": "^5.5.0",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"mini-css-extract-plugin": "^2.6.1",
"postcss-loader": "^7.0.0",
"style-loader": "^3.3.1",
"stylelint": "14.0.0",
"stylelint-order": "5.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
},
"scripts": {
"build": "webpack --mode production",
"editorconfig": "editorconfig-cli",
"dev": "webpack serve",
"stylelint": "stylelint \"src/**/*.css\"",
"stylelint:fixed": "stylelint \"src/**/*.css\" --fix",
"test": "npm run editorconfig && npm run stylelint",
"prepare": "husky install",
"staged": "lint-staged",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"editorconfig-cli": [
"*.json",
"src/**/*.*"
],
"engines": {
"node": "^16"
},
"lint-staged": {
"*": "npm run test"
},
"dependencies": {
"gsap": "^3.11.0"
}
}