-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.24 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
{
"name": "react-ts-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node build/dev.server.js",
"start": "node build/dev.start.js",
"lint:ts": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fixts": "tslint -c tslint.json 'src/**/*.ts' --fix",
"testBuild": "webpack",
"build": "node build/build.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:ts"
}
},
"repository": {
"type": "git",
"url": "git@github.com:kivamobius/react-ts-template.git"
},
"author": "含光",
"license": "ISC",
"dependencies": {
"antd": "^4.0.1",
"axios": "^0.19.2",
"classnames": "^2.2.6",
"dva": "^2.4.1",
"dva-loading": "^3.0.20",
"lodash": "^4.17.15",
"rc-util": "^4.20.3",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"redux": "^4.0.5"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.8.7",
"@types/dva": "^1.1.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.7",
"@types/webpack-env": "^1.15.1",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"babel-plugin-import": "^1.13.0",
"chalk": "^3.0.0",
"css-hot-loader": "^1.4.4",
"css-loader": "^3.4.2",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.2.3",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"ora": "^4.0.3",
"portfinder": "^1.0.25",
"postcss-loader": "^3.0.0",
"react-hot-loader": "^4.12.19",
"rimraf": "^3.0.2",
"semver": "^7.1.3",
"shelljs": "^0.8.3",
"style-loader": "^1.1.3",
"tslint": "^6.0.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.2.0",
"typescript": "^3.8.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.0",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
},
"engines": {
"node": "10.x.x",
"npm": "^6.0.0"
}
}