-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 3.04 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
{
"name": "mobx-in-react-scalable-state-management",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.5.8",
"@craco/craco": "^6.4.3",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@material-ui/core": "^4.12.3",
"@mui/icons-material": "^5.3.1",
"@mui/material": "^5.4.0",
"@mui/styles": "^5.3.0",
"@mui/x-data-grid": "^5.4.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.14",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"apollo-client-preset": "^1.0.8",
"apollo-server": "^3.6.2",
"axios": "^0.25.0",
"body-parser": "^1.19.1",
"graphql": "^15.7.2",
"lodash": "^4.17.21",
"merge-graphql-schemas": "^1.7.8",
"mobx": "^6.3.13",
"mobx-persist-store": "^1.0.4",
"mobx-react-lite": "^3.2.3",
"mobx-remotedev": "^0.3.6",
"qs": "^6.10.3",
"querystring": "^0.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.27.0",
"react-ioc": "^1.0.0",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"type-fest": "^2.11.1",
"typescript": "^4.5.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start-all": "concurrently --kill-others \"npm run start-frontend\" \"npm run start-backend\" \"npm run generate-graphql-types-watch\"",
"start-backend": "nodemon --watch ./backend/server backend/server/index.mjs",
"start-frontend": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"lint": "eslint \"**/*.{js,ts,tsx}\" --max-warnings=0",
"lint:fix": "eslint \"**/*.{js,ts,tsx}\" --fix",
"generate-graphql-types": "graphql-codegen",
"generate-graphql-types-watch": "graphql-codegen --watch",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\""
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"no-console": "warn",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-empty-interface": "off",
"prettier/prettier": "off"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@graphql-codegen/cli": "^2.4.0",
"@graphql-codegen/typescript": "^2.4.2",
"@graphql-codegen/typescript-operations": "^2.2.3",
"@types/qs": "^6.9.7",
"@types/react-router-dom": "^5.3.3",
"concurrently": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.2",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
}
}