-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.36 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
{
"name": "nearbirds",
"private": true,
"version": "0.0.0",
"scripts": {
"start": "vite --host --port 3000",
"build": "vite build",
"lint": "eslint src",
"preview": "vite preview --port 8080",
"prepare": "npx husky install",
"test": "jest --env=jsdom",
"test-coverage": "jest --env=jsdom --coverage --watchAll=false"
},
"dependencies": {
"@sentry/react": "^7.44.2",
"@sentry/tracing": "^7.44.2",
"@testing-library/react": "^14.0.0",
"@vitejs/plugin-react": "^2.2.0",
"autoprefixer": "^10.4.13",
"node-fetch": "^2.6.9",
"postcss": "^8.4.19",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-audio-player": "^0.17.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-router-dom": "^6.4.3",
"tailwindcss": "^3.2.4",
"vite": "^3.2.4"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@testing-library/dom": "^9.2.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.5.0",
"eslint": "^8.35.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"react-test-renderer": "^18.2.0",
"husky": "^8.0.0"
}
}