-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 861 Bytes
/
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
{
"name": "fret-zone",
"version": "0.1.0",
"private": true,
"dependencies": {
"a11y-react-emoji": "^1.1.2",
"clsx": "^1.1.1",
"nanoid": "^3.1.16",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass": "^1.63.6",
"slugify": "^1.4.0"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "vitest",
"serve": "vite preview"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@vitejs/plugin-react": "^4.0.1",
"jsdom": "^22.1.0",
"vite": "^4.3.9",
"vitest": "^0.32.2"
}
}