-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "toggl-easy-reports",
"private": true,
"proxy": "http://localhost:5000",
"homepage": "https://toggl.benjavr.me",
"dependencies": {
"antd": "3.24.3",
"moment": "2.24.0",
"qs": "6.9.0",
"react": "16.11.0",
"react-dom": "16.11.0",
"whatwg-fetch": "3.0.0"
},
"devDependencies": {
"@types/jest": "24.0.21",
"@types/node": "12.12.5",
"@types/qs": "6.5.3",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.3",
"gh-pages": "2.1.1",
"husky": "3.0.9",
"node-sass": "4.13.0",
"react-scripts": "3.2.0",
"tslint": "5.20.0",
"tslint-react": "4.1.0",
"typescript": "3.7.1-rc",
"typescript-tslint-plugin": "0.5.4",
"typescript-plugin-css-modules": "1.3.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "tslint --project ./tsconfig.json --format codeFrame",
"lint:fix": "tslint --project ./tsconfig.json --format codeFrame --write",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}