-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.65 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.65 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
{
"name": "applied-designer-microsite",
"version": "1.0.0",
"description": "",
"keywords": [],
"type": "module",
"main": "src/index.jsx",
"dependencies": {
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@react-three/postprocessing": "^3.0.4",
"p5": "^2.2.2",
"r3f-perf": "^7.2.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.13.1",
"survey-core": "^2.5.15",
"survey-react-ui": "^2.5.15",
"three": "^0.183.2"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/three": "^0.183.1",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/ui": "^4.1.0",
"eslint": "^10.0.3",
"eslint-plugin-react": "^7.37.5",
"jsdom": "^28.1.0",
"playwright": "^1.58.2",
"stylelint": "^17.4.0",
"stylelint-config-standard": "^40.0.0",
"vite": "^7.3.1",
"vitest": "^4.1.0"
},
"scripts": {
"dev": "vite",
"build": "vite build && node scripts/verify-clean-bundle.js",
"start": "vite build && vite preview",
"pretest": "bun run lint && bun run lint:css",
"test": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"lint": "eslint src --ext .js,.jsx",
"lint:css": "stylelint \"src/**/*.css\" || true",
"fix": "eslint src --fix --ext .js,.jsx && stylelint --fix \"src/**/*.css\""
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}