-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "react-app-init",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "skr dev",
"test": "skr test --target=react",
"build": "skr build --clean",
"analyze": "yarn run build --analyze",
"lint": "skr lint"
},
"repository": {
"type": "git",
"url": ""
},
"author": "zhanglili01",
"license": "UNLICENSED",
"dependencies": {
"@ecomfe/react-track": "^2.0.2",
"@ecomfe/svg-mixed-loader": "^1.0.0",
"@reduxjs/toolkit": "^1.5.0",
"@types/react-router-dom": "^5.1.6",
"core-js": "^3.18.0",
"lodash": "^4.17.20",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.4",
"reset-css": "^5.0.1",
"uri-templates": "^0.2.0"
},
"devDependencies": {
"@reskript/cli": "2.2.2",
"@reskript/cli-build": "2.2.2",
"@reskript/cli-dev": "2.2.2",
"@reskript/cli-lint": "2.2.2",
"@reskript/config-lint": "2.2.2",
"@types/lodash": "^4.14.165",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.12",
"@types/uri-templates": "^0.1.30",
"eslint": "^7.15.0",
"husky": "^4.3.6",
"stylelint": "^13.8.0",
"typescript": "^4.1.3",
"webpack": "^5.10.3"
},
"husky": {
"hooks": {
"pre-commit": "skr lint --staged"
}
}
}