-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.79 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
61
62
63
{
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@types/node": "^18.0.6",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@webpack-cli/generators": "^2.5.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"commitizen": "^4.2.5",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"cz-emoji-conventional": "^1.0.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.7.2",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.12",
"style-loader": "^3.3.1",
"tailwindcss": "^3.1.6",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"version": "1.0.0",
"description": "My webpack project",
"name": "my-webpack-project",
"scripts": {
"start": "webpack serve --mode=development --open",
"build": "webpack --config webpack-prod.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier:check": "npx prettier --check .",
"prettier:fix": "npx prettier --write .",
"lint": "npx eslint .",
"prepare": "husky install"
},
"lint-staged": {
"*.{css,less,scss,html,json,jsx,js,ts}": [
"prettier --write ."
],
"*.{js,ts}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji-conventional"
}
},
"dependencies": {
"@types/chart.js": "^2.9.37",
"chart.js": "^3.8.0",
"chartjs-adapter-moment": "^1.0.0",
"moment": "^2.29.4"
}
}