-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.45 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
{
"name": "react-ts-template",
"version": "1.0.0",
"description": "A project template for react and typescript.",
"scripts": {
"dev": "npm run serve",
"dev:open": "cross-env OPEN=true npm run dev",
"serve": "cross-env NODE_ENV=development webpack serve",
"build": "cross-env NODE_ENV=production webpack --progress",
"build:test": "cross-env NODE_ENV=test webpack --progress",
"build:zip": "cross-env BUILD_ZIP=true npm run build",
"watch": "cross-env NODE_ENV=development webpack --watch --progress",
"lint": "eslint ./src --ext .ts,.js",
"lint:fix": "eslint ./src --ext .ts,.js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/likuner/react-ts-template.git"
},
"keywords": [
"react",
"typescript",
"template",
"webpack"
],
"author": "Hunter",
"license": "MIT",
"bugs": {
"url": "https://github.com/likuner/react-ts-template/issues"
},
"homepage": "https://github.com/likuner/react-ts-template#readme",
"sideEffects": [
"*.css",
"*.less"
],
"dependencies": {
"antd": "^5.1.0",
"lodash": "^4.17.21",
"mobx": "^6.7.0",
"mobx-react": "^7.6.0",
"react": "^18.2.0",
"react-router-dom": "^6.6.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.20.7",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.17",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"dotenv": "^16.0.3",
"dotenv-expand": "^10.0.0",
"eslint": "^8.30.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"filemanager-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.0",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss-loader": "^7.0.2",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}