-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.29 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.29 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "t-webpack5",
"version": "2.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"lint:prettier": "prettier -w \"src/**/*.ts\"",
"lint:eslint-check": "eslint --ext .ts \"src/**/*.ts\"",
"lint:eslint": "eslint --fix --ext .ts \"src/**/*.ts\"",
"lint:stylelint-prettier-check": "stylelint-config-prettier-check",
"lint:stylelint": "stylelint --fix \"src/**/*.{css,s[ac]ss}\"",
"build:webpack": "webpack --mode production",
"build:webpack-dev": "webpack --mode development",
"dev:webpack-analyze": "webpack --mode development --analyze",
"dev:webpack-serve": "webpack serve --mode development",
"dev:plop": "plop",
"build": "npm run build:webpack",
"serve": "npm run dev:webpack-serve",
"test": "jest"
},
"description": "Front end development template based on webpack5.",
"main": "src/main.ts",
"author": "SystemLighht",
"license": "MIT",
"homepage": "https://github.com/SystemLight/demo#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SystemLight/demo"
},
"bugs": {
"url": "https://github.com/SystemLight/demo/issues"
},
"engines": {
"node": ">=18.19.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/generator": "^7.25.0",
"@babel/parser": "^7.25.3",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/runtime-corejs3": "^7.25.0",
"@babel/traverse": "^7.25.3",
"@babel/types": "^7.25.2",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@systemlight/fabric": "^5.1.7",
"@systemlight/webpack-config": "^6.7.3",
"@types/jest": "^29.2.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-loader": "^8.2.5",
"core-js": "^3.23.1",
"css-loader": "^6.7.1",
"eslint": "^8.17.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"inject-body-webpack-plugin": "^1.3.0",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"plop": "^3.1.1",
"postcss": "^8.4.41",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.7.1",
"prettier": "^2.7.0",
"sass": "^1.52.3",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"stylelint": "^14.9.1",
"stylelint-config-css-modules": "^4.1.0",
"stylelint-config-idiomatic-order": "9.0.0",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "5.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.5.0",
"svg-sprite-loader": "^6.0.11",
"tailwindcss": "^3.1.6",
"ts-jest": "^29.0.3",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.3",
"antd": "^5.0.7",
"axios": "^1.7.4",
"canvas-nest.js": "^2.0.4",
"dayjs": "^1.11.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.5.0"
}
}