-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.99 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.99 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "dracor-frontend",
"version": "2.6.0",
"private": true,
"dependencies": {
"@dracor/registry": "^1.15.0",
"@fortawesome/fontawesome-svg-core": "^7.0.0",
"@fortawesome/free-brands-svg-icons": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"@fortawesome/react-fontawesome": "^3.0.1",
"@triply/yasgui": "^4.2.28",
"CETEIcean": "^1.9.5",
"apisauce": "^3.2.0",
"axios": "^1.13.5",
"bootstrap": "^4.5.3",
"chart.js": "^2.9.4",
"classnames": "^2.2.6",
"compare-versions": "^6.1.1",
"globals": "^16.3.0",
"react": "^18.3.1",
"react-bootstrap-table-next": "^4.0.3",
"react-bootstrap-table2-toolkit": "^2.0.0",
"react-chartjs-2": "^2.11.1",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "18.3.1",
"react-headroom": "^3.0.1",
"react-helmet": "^6.1.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.26.0",
"react-sigma": "^1.2.35",
"react-slick": "^0.30.3",
"react-stickynode": "^3.0.4",
"reactstrap": "^8.7.1",
"recharts": "^3.1.2",
"rehype-raw": "^7.0.0",
"sass": "^1.91.0",
"swagger-ui-react": "^5.28.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11",
"@types/react-router-dom": "^5.3.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.14",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-mdx": "^3.6.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.4",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.33.1",
"vite": "^7.2.6",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^4.0.14"
},
"scripts": {
"start": "VITE_VERSION=`./version.sh` vite",
"build": "VITE_VERSION=`./version.sh` vite build",
"serve": "VITE_VERSION=`./version.sh` vite preview",
"lint": "eslint src",
"test": "vitest",
"test:coverage": "vitest run --coverage --watch=false",
"test:coverage:browse": "vitest run --coverage --watch=false && open-cli coverage/index.html",
"bump-version": "npm version --tag-version-prefix=''"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"*.js": "eslint --cache --fix"
},
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
}