-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.16 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": "get-shit-done",
"version": "0.1.0",
"private": true,
"homepage": "https://get-shit-done.pavel-kaminsky.com",
"dependencies": {
"@material-ui/core": "4.9.1",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.41",
"classnames": "2.2.6",
"mobx": "5.15.4",
"mobx-react": "6.2.2",
"node-sass": "5.0.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-ga": "3.2.0",
"react-scripts": "3.3.1",
"styled-components": "5.0.1",
"typescript": "3.7.5",
"uuid": "3.4.0"
},
"scripts": {
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint src/**/*.{ts,tsx,js,json} --fix",
"lint:prettier": "prettier --config .prettierrc --write src/**/*.{ts,tsx,js,json}",
"start": "cross-env NODE_ENV=development react-scripts start",
"build": "cross-env GENERATE_SOURCEMAP=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "npm run build && firebase deploy"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/classnames": "2.2.10",
"@types/jest": "25.1.1",
"@types/material-ui": "0.21.7",
"@types/node": "10.12.18",
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/react-ga": "2.3.0",
"@types/styled-components": "4.4.2",
"@types/uuid": "3.4.7",
"@typescript-eslint/eslint-plugin": "2.19.0",
"@typescript-eslint/parser": "2.19.0",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-better-styled-components": "1.1.2",
"eslint-plugin-css-modules": "2.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "23.6.0",
"eslint-plugin-json": "2.1.1",
"eslint-plugin-prettier": "3.1.3",
"husky": "4.2.5",
"jest": "24.9.0",
"jest-styled-components": "7.0.3",
"lint-staged": "10.0.7",
"prettier": "1.19.1",
"ts-jest": "25.2.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}