-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 3.86 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
121
122
{
"name": "dark-days-arch",
"version": "0.1.0",
"private": false,
"scripts": {
"ui:start": "craco start",
"ui:build": "craco build",
"ui:test": "craco test",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:help": "tauri",
"lint": "eslint ./src --ext js,ts,tsx,json",
"lint:fix": "eslint ./src --ext js,ts,tsx,json --fix",
"try": "cd ./src-tauri && cargo run --example try",
"generate-ts": "cd ./src-tauri && cargo run --example generate-jsonschema && cd .. && ts-node ./scripts/generate-cdda-typings-from-json-schema.ts",
"installType": "typesync"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@blueprintjs/core": "^3.47.0",
"@material-ui/core": "5.0.0-alpha.27",
"@material-ui/icons": "5.0.0-alpha.27",
"@material-ui/lab": "5.0.0-alpha.27",
"@material-ui/styled-engine-sc": "^5.0.0-alpha.26",
"@monaco-editor/react": "^4.2.2",
"@rematch/core": "^2.1.0",
"@rematch/immer": "^2.1.0",
"@rematch/loading": "^2.1.0",
"@rematch/persist": "^2.1.0",
"@rematch/select": "^3.1.0",
"@tauri-apps/api": "^1.0.0-beta.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.24",
"@types/node": "^12.20.19",
"@types/react": "^17.0.17",
"@types/react-dom": "^17.0.9",
"beautiful-react-hooks": "0.35.0",
"date-fns": "^2.23.0",
"fast-fuzzy": "^1.10.10",
"halogenium": "^2.3.0",
"i18next": "^20.4.0",
"i18next-browser-languagedetector": "^6.1.2",
"i18next-http-backend": "^1.3.0",
"immer": "^9.0.5",
"lodash": "^4.17.21",
"pixi.js": "^6.1.2",
"re-resizable": "^6.9.0",
"react": "^17.0.2",
"react-collapse-pane": "^2.0.1",
"react-dom": "^17.0.2",
"react-epic-spinners": "^0.5.0",
"react-helmet": "^6.1.0",
"react-i18next": "11.11.4",
"react-pixi-fiber": "^1.0.0-beta.13",
"react-redux": "^7.2.4",
"react-scripts": "4.0.3",
"redux": "^4.1.1",
"redux-persist": "^6.0.0",
"spectorjs": "^0.9.26",
"styled-components": "5.3.0",
"styled-normalize": "^8.0.7",
"typeface-roboto": "1.1.13",
"typescript": "^4.3.5",
"web-vitals": "^1.1.2"
},
"devDependencies": {
"@craco/craco": "^6.2.0",
"@tauri-apps/cli": "^1.0.0-beta.6",
"@types/eslint": "7.28.0",
"@types/eslint-plugin-prettier": "3.1.0",
"@types/halogenium": "^2.3.1",
"@types/lodash": "^4.14.172",
"@types/prettier": "^2.3.2",
"@types/react-helmet": "^6.1.2",
"@types/styled-components": "^5.1.12",
"@types/testing-library__jest-dom": "^5.14.1",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
"babel-plugin-styled-components": "^1.13.2",
"craco-alias": "^3.0.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-with-typescript": "20.0.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-html": "6.1.2",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-security-node": "1.0.14",
"eslint-plugin-typescript-sort-keys": "^1.7.0",
"eslint-plugin-unicorn": "35.0.0",
"json-schema-to-typescript": "^10.1.4",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typesync": "^0.8.0"
}
}