-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.86 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.86 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
{
"name": "impala",
"type": "module",
"version": "1.5.7",
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"web-vitals": "4.2.2"
},
"devDependencies": {
"@playwright/test": "^1.45.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "^22.0.0",
"@vitejs/plugin-react-swc": "^4.2.3",
"@vitest/coverage-v8": "^4.0.18",
"archiver": "^7.0.1",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"jsdom": "^24.1.1",
"ncp": "^2.0.0",
"oxlint": "^1.29.0",
"prettier": "^3.3.3",
"prop-types": "^15.8.1",
"rollup": "^4.59.0",
"sanitize-html": "^2.14.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"scripts": {
"pre-script": "cross-env VITE_VERSION=$npm_package_version VITE_NAME=$npm_package_name",
"copy-static": "ncp pages build && ncp temp_dist build/sparql",
"build-react": "vite build --base=/sparql",
"start": "pnpm pre-script vite",
"build": "pnpm pre-script pnpm build-react && pnpm copy-static && pnpm create-zip",
"test": "vitest test",
"eject": "react-scripts eject",
"create-zip": "node create-zip.js",
"lint": "oxlint src/",
"lint:fix": "oxlint src/ --fix",
"_format": "prettier \"**/*.{js,jsx,css,html}\"",
"format": "npm run _format -- --write",
"prepare": "husky"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}