-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 2.01 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
{
"name": "re-ducks-typescript-boilerplate",
"version": "0.1.0",
"private": true,
"engines": {
"node": "11.8.0",
"npm": "6.8.0"
},
"author": {
"name": "toriiico",
"email": "pandeiro.hiitemasu@gmail.com"
},
"homepage": "https://github.com/toriiico/re-ducks-typescript-boilerplate",
"repository": {
"type": "git",
"url": "git+https://github.com/toriiico/re-ducks-typescript-boilerplate.git"
},
"bugs": {
"url": "https://github.com/toriiico/re-ducks-typescript-boilerplate/issues"
},
"dependencies": {
"@types/jest": "24.0.6",
"@types/node": "11.9.4",
"@types/react": "16.8.4",
"@types/react-dom": "16.8.2",
"@types/react-redux": "7.0.1",
"@types/react-router-dom": "4.3.1",
"@types/redux-thunk": "2.1.0",
"react": "16.8.2",
"react-dom": "16.8.2",
"react-redux": "6.0.1",
"react-router-dom": "4.3.1",
"react-scripts": "2.1.5",
"redux": "4.0.1",
"redux-devtools-extension": "2.13.8",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"typesafe-actions": "3.1.0",
"typescript": "3.3.3"
},
"devDependencies": {
"prettier": "1.16.4",
"tslint": "5.12.1",
"tslint-config-airbnb": "5.11.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"tslint-react": "3.6.0",
"tsutils": "3.9.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"eject": "react-scripts eject",
"tslint:prettier-check": "tslint-config-prettier-check ./tslint.json",
"tslint": "tslint --format stylish --project ./tsconfig.json './src/**/*.ts{,x}'",
"prettier": "prettier --write ./src/**/*.ts{,x}",
"lint": "npm run tslint && npm run tslint:prettier-check",
"format": "npm run prettier"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}