-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 1.89 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
{
"name": "coderiver-react-mobile",
"version": "1.0.0",
"description": "coderiver-react-mobile",
"main": "index.js",
"scripts": {
"build": "node ./scripts/build.js",
"start": "node ./scripts/start.js",
"test": "jest"
},
"keywords": [],
"author": "coderiver",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-transform-react-jsx": "^7.1.6",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@types/jest": "^23.3.10",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.4",
"babel-plugin-dva-hmr": "^0.4.1",
"babel-plugin-import": "^1.11.0",
"css-loader": "^1.0.1",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.2.1",
"jest": "^23.6.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.0",
"mini-css-extract-plugin": "^0.4.5",
"prettier": "^1.15.3",
"redbox-react": "1.x",
"style-loader": "^0.23.1",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"tslint-loader": "^3.5.4",
"tslint-react": "^3.6.0",
"typescript": "3.1.1",
"url-loader": "^1.1.2",
"webpack": "^4.26.1",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"@types/node": "^10.12.18",
"@types/react": "^16.7.13",
"@types/react-dom": "^16.0.11",
"antd-mobile": "^2.2.8",
"dva": "^2.4.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"tslib": "^1.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts*": [
"prettier --write",
"git add"
]
},
"browserslist": [
"last 2 major versions"
],
"theme": {}
}