forked from peterchung/Docketeer-XVI-Website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.82 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
{
"name": "docketeer-xii-website",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 3001",
"start": "vite --port 3000",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "jest --verbose"
},
"dependencies": {
"@jest/globals": "^29.5.0",
"@react-three/fiber": "^8.13.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"intersection-observer": "^0.12.2",
"jest-environment-jsdom": "^29.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.4.3",
"react-router-dom": "^6.11.0",
"react-scroll": "^1.8.9",
"react-spring": "^9.7.1",
"three": "^0.152.0",
"ts-jest": "^29.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-scroll": "^1.8.6",
"@types/three": "^0.150.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitejs/plugin-react": "^4.0.0-beta.0",
"babel-jest": "^29.5.0",
"eslint": "^8.38.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"jest": "^29.5.0",
"sass": "^1.62.0",
"typescript": "^5.0.2",
"vite": "^4.3.9"
},
"jest": {
"testEnvironment": "jsdom",
"verbose": true,
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"preset": "ts-jest",
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}