This repository was archived by the owner on Nov 12, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.63 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.63 KB
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
{
"name": "flygon-admin",
"version": "1.2.1",
"license": "MIT",
"description": "Flygon Admin Panel",
"author": "TurtIeSocks <58572875+TurtIeSocks@users.noreply.github.com>",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/UnownHash/Flygon-Admin.git"
},
"scripts": {
"build": "nx run-many --target=build --configuration=production --all",
"build:client": "nx run client:build:production",
"build:server": "nx run server:build:production",
"dev": "nx run-many --target=dev --configuration=development --all",
"dev:client": "nx run client:dev:development",
"dev:server": "nx run server:dev:development",
"start": "nx run server:serve:production",
"start:client": "nx run server:serve:production",
"start:server": "nx run server:serve:production"
},
"prettier": {
"arrowParens": "always",
"semi": false,
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@babel/core": "^7.20.5",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.2",
"leaflet": "^1.9.3",
"leaflet-pixi-overlay": "^1.9.4",
"lodash.debounce": "^4.0.8",
"papaparse": "^5.3.2",
"pixi.js": "^6.5.8",
"ra-data-simple-rest": "^4.11.2",
"react": "^18.2.0",
"react-admin": "^4.11.2",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-virtuoso": "^4.3.10",
"zustand": "^4.3.8"
},
"devDependencies": {
"@nrwl/cli": "15.6.2",
"@nrwl/eslint-plugin-nx": "15.6.2",
"@nrwl/js": "15.6.2",
"@nrwl/linter": "15.6.2",
"@nrwl/nx-cloud": "15.0.2",
"@nrwl/react": "15.6.2",
"@nrwl/vite": "15.6.2",
"@nrwl/web": "15.6.2",
"@nrwl/workspace": "15.6.2",
"@nx-go/nx-go": "^2.6.0",
"@nx-tools/container-metadata": "4.0.0-alpha.1",
"@nx-tools/nx-container": "4.0.0-alpha.1",
"@types/leaflet": "^1.9.3",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^18.15.3",
"@types/papaparse": "^5.3.5",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"nx": "15.6.2",
"prettier": "^2.8.7",
"toml": "^3.0.0",
"typescript": "^4.9.3",
"vite": "^4.3.9",
"vite-plugin-checker": "^0.6.0"
}
}