-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "typescript-form",
"version": "1.0.0",
"description": "TypeScript-React-Starter",
"scripts": {
"dev": "MODE=development webpack-dev-server --color --hot --open --mode=development",
"build": "MODE=production webpack --mode=production",
"start": "npm run dev",
"precommit": "lint-staged"
},
"lint-staged": {
"src/*/**.{ts,tsx}": "tslint --project tsconfig.json"
},
"keywords": [],
"author": "icepy",
"license": "LGPL-3.0",
"devDependencies": {
"awesome-typescript-loader": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^1.1.11",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"react-hot-loader": "^4.3.4",
"source-map-loader": "^0.2.3",
"style-loader": "^0.21.0",
"tslint": "^5.11.0",
"tslint-react": "^3.6.0",
"typescript": "^3.0.1",
"url-loader": "^1.1.0",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@types/react": "^16.4.10",
"@types/react-dom": "^16.0.7",
"antd": "^3.13.6",
"react": "^16.4.2",
"react-dom": "^16.4.2"
}
}