-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.32 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
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"description": "Base template for admin services",
"license": "ISC",
"author": "",
"main": "./dist/index.js",
"scripts": {
"start": "next start",
"dev": "next dev",
"build": "next build",
"check-types": "tsc --noemit",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"src/**/*.(ts|tsx)\"",
"check": "npm run lint && npm run check-types"
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"@sentry/integrations": "7.74.1",
"@sentry/node": "7.74.1",
"@sentry/react": "7.74.1",
"@tanstack/react-table": "^8.13.2",
"ahooks": "^3.7.11",
"chart.js": "^4.4.1",
"classnames": "^2.3.2",
"clsx": "^2.0.0",
"cross-env": "^7.0.3",
"dompurify": "^3.1.4",
"env-var": "7.4.1",
"express": "^4.18.2",
"html-react-parser": "^5.1.10",
"isomorphic-fetch": "^3.0.0",
"next": "13.5.6",
"next-auth": "^4.24.3",
"nprogress": "^0.2.0",
"primeflex": "^3.3.1",
"primeicons": "^6.0.1",
"primereact": "^10.0.5",
"quill": "^2.0.1",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-graph-vis": "^1.0.7",
"react-redux": "^9.1.0",
"redux": "^5.0.1",
"tslib": "^2.6.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.5.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/dompurify": "^3.0.5",
"@types/express": "^4.17.20",
"@types/node": "^18.18.6",
"@types/nprogress": "^0.2.2",
"@types/react": "^18.2.31",
"@types/react-copy-to-clipboard": "^5.0.7",
"@types/react-redux": "^7.1.33",
"@types/redux": "^3.6.31",
"@types/uuid": "^9.0.8",
"@types/vis": "^4.21.27",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"eslint": "^8.57.0",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.35.0",
"leasot": "^13.3.0",
"node-dev": "^8.0.0",
"prettier": "^3.2.5",
"sass": "^1.69.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"sideEffects": [
"**/*.css",
"**/*.less",
"**/*.scss"
],
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
}