-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.91 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
{
"name": "pathfinder-vis",
"version": "0.1.0",
"private": true,
"dependencies": {
"@radix-ui/react-select": "^1.1.2",
"@radix-ui/react-slider": "^1.1.0",
"@radix-ui/react-switch": "^1.0.1",
"@radix-ui/react-tooltip": "^1.0.2",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^18.11.10",
"classnames": "^2.3.2",
"lucide-react": "^0.104.1",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-switch": "^5.0.1",
"typescript": "~4.9.3"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"preinstall": "npx only-allow pnpm",
"test:watch": "pnpm test --watchAll",
"test": "vitest",
"coverage": "vitest run --coverage",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"eslint": "eslint './**/*.{ts,tsx}'",
"eslint:fix": "eslint --fix './**/*.{ts,tsx}'"
},
"eslintConfig": {
"extends": "react-app"
},
"pnpm": {
"overrides": {
"@types/react": "^18.0.26"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-c8": "^0.25.7",
"@vitest/ui": "^0.25.3",
"autoprefixer": "^10.4.13",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jsdom": "^20.0.3",
"postcss": "^8.4.19",
"prettier": "^2.0.5",
"tailwindcss": "^3.2.4",
"vite": "^3.2.4",
"vite-plugin-svgr": "^2.2.2",
"vite-tsconfig-paths": "^3.6.0",
"vitest": "^0.25.3"
}
}