-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "react-app-rewire-typescript",
"version": "2.0.2",
"description": "Add ts-loader to a react-app-rewired config.",
"main": "index.js",
"files": ["index.js"],
"scripts": {
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": ["prettier --write", "git add"],
"*.json": ["prettier --parser json --write", "git add"]
},
"repository": {
"type": "git",
"url":
"git+https://github.com/lwd-technology/react-app-rewire-typescript.git"
},
"keywords": ["typescript", "ts-loader", "webpack", "react-app-rewired"],
"author": "Ian Copp <ian@wolflair.com>",
"license": "MIT",
"bugs": {
"url":
"https://github.com/lwd-technology/react-app-rewire-typescript/issues"
},
"homepage":
"https://github.com/lwd-technology/react-app-rewire-typescript#readme",
"devDependencies": {
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.6.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"prettier": "^1.7.1"
},
"dependencies": {
"ts-loader": "^3.1.1"
}
}