-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·120 lines (120 loc) · 3.03 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "directual-platform-light",
"version": "0.1.2",
"private": true,
"dependencies": {
"@types/history": "^4.7.3",
"@types/jest": "24.0.18",
"@types/js-cookie": "^2.2.2",
"@types/lodash": "^4.14.138",
"@types/node": "12.7.3",
"@types/react-dom": "16.9.0",
"@types/react-redux": "^7.1.2",
"@types/react-router-dom": "^4.3.5",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"classnames": "^2.2.6",
"connected-react-router": "^6.5.2",
"cookie-parser": "^1.4.4",
"directual": "^0.9.0",
"events": "^3.0.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"history": "^4.9.0",
"http-proxy-middleware": "^0.20.0",
"husky": "^3.0.8",
"js-cookie": "^2.2.1",
"lodash": "^4.17.15",
"moment": "2.24.0",
"passport": "^0.4.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-google-login": "^5.0.5",
"react-intl": "^3.2.1",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.1.2",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-form": "^8.2.6",
"redux-saga": "^1.0.5",
"storybook-directual": "^2.1.1",
"typescript": "3.6.2",
"@typescript-eslint/eslint-plugin": "2.4.0"
},
"scripts": {
"start": "npm run locale-server & react-scripts start",
"build": "react-scripts build",
"bump": "npm version patch -m \"Release v%s\" && git push && git push --tags",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "tsc --noEmit && eslint --max-warnings=0 'src/**/*.{js,ts,tsx}'",
"locale-server": "json-server --watch ./locale/locale.json --port 3001"
},
"husky": {
"hooks": {
"pre-push": "npm run lint --silent"
}
},
"eslintConfig": {
"extends": [
"react-app",
"airbnb-typescript"
],
"overrides": [
{
"files": [
"**/*.ts?(x)"
],
"rules": {
"@typescript-eslint/no-unused-vars": "warn",
"react/prop-types": "off",
"react-hooks/exhaustive-deps": "off",
"react/jsx-props-no-spreading": 0,
"no-console": [
"warn",
{
"allow": [
"warn",
"error"
]
}
]
}
}
],
"settings": {
"import/resolver": {
"node": {
"paths": [
"src"
]
}
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
">0.2%",
"not dead",
"not op_mini all"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.4.0",
"eslint": "6.3.0",
"eslint-config-airbnb-typescript": "4.0.1",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "^2.1.2",
"json-server": "^0.15.1"
},
"proxy": "http://localhost:3005"
}