-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
101 lines (101 loc) · 3 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
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
{
"name": "cms-react",
"version": "1.1.0",
"description": "A Project with React/Typescript",
"main": "index.js",
"author": "xpioneer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xpioneer/react-typescript.git"
},
"bugs": {
"url": "https://github.com/xpioneer/react-typescript/issues"
},
"scripts": {
"start": "npm run dev",
"dev": "NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js",
"build": "NODE_ENV=production webpack --config build/webpack.prod.conf.js",
"lint": "eslint --ext ts,tsx src/",
"lint:fix": "eslint --ext ts,tsx src/ --fix",
"lintcss": "stylelint --syntax scss src/**/*.scss",
"lintcss:fix": "stylelint --syntax scss src/**/*.scss --fix"
},
"dependencies": {
"@ant-design/icons": "^5.4.0",
"@antv/l7": "^2.22.1",
"@antv/l7-maps": "^2.22.1",
"@react-three/fiber": "^8.17.6",
"@vladmandic/face-api": "^1.7.14",
"antd": "^5.13.2",
"axios": "^1.6.5",
"classnames": "^2.5.1",
"date-fns": "^2.30.0",
"echarts": "^5.4.3",
"echarts-gl": "^2.0.9",
"lodash": "^4.17.21",
"mobx": "^6.13.2",
"mobx-react": "^9.1.1",
"quill": "^1.3.7",
"quill-image-resize-module": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-json-view-lite": "^1.4.0",
"react-router-dom": "^6.26.1",
"three": "^0.168.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-decorators": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.6",
"@types/quill": "^2.0.14",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-router-dom": "^5.3.3",
"@types/three": "^0.168.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^5.2.7",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.33.2",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.3",
"less": "^4.2.0",
"less-loader": "^10.2.0",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^1.6.2",
"optimize-css-assets-webpack-plugin": "^5.0.8",
"postcss-loader": "^4.3.0",
"postcss-preset-env": "^6.7.2",
"prop-types": "^15.8.1",
"sass": "^1.77.8",
"sass-loader": "^13.3.3",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^20.0.0",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^4.9.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"npm run lint:fix"
]
}
}