-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.34 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
74
75
76
77
78
79
80
81
{
"name": "jphacks",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"check-types": "tsc --noEmit",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json}'"
},
"dependencies": {
"@emotion/css": "^11.10.0",
"@emotion/react": "^11.10.4",
"@mantine/core": "^5.7.1",
"@mantine/dropzone": "^5.7.1",
"@mantine/ds": "^5.7.1",
"@mantine/hooks": "^5.5.5",
"@mantine/next": "^5.5.5",
"@mantine/prism": "^5.7.1",
"@mediapipe/camera_utils": "^0.3.1640029074",
"@mediapipe/drawing_utils": "^0.3.1620248257",
"@mediapipe/pose": "^0.5.1635988162",
"@pixiv/three-vrm": "^1.0.4",
"@react-three/drei": "^9.34.4",
"@react-three/fiber": "^8.8.10",
"@tabler/icons": "^1.103.0",
"camera-controls": "^1.37.3",
"chart.js": "^3.9.1",
"firebase": "^9.12.1",
"next": "12.3.1",
"node-sass": "^7.0.3",
"react": "18.2.0",
"react-calendar-heatmap": "^1.9.0",
"react-chartjs-2": "^4.3.1",
"react-dom": "18.2.0",
"react-firebase-hooks": "^5.0.3",
"react-icons": "^4.6.0",
"react-share": "^4.4.1",
"react-three-fiber": "^6.0.13",
"react-tooltip": "^4.4.2",
"react-webcam": "^7.0.1",
"sass": "^1.55.0",
"three": "^0.145.0",
"use-countdown-timer": "^1.3.2",
"use-sound": "^4.0.1",
"zustand": "^4.1.2"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.10.2",
"@types/node": "^18.11.0",
"@types/react": "^18.0.21",
"@types/react-calendar-heatmap": "^1.6.3",
"@types/react-dom": "^18.0.6",
"@types/three": "^0.144.0",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"husky": "^8.0.1",
"lil-gui": "^0.17.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"url-loader": "^4.1.1"
},
"lint-staged": {
"*.{ts,tsx}": [
"yarn lint",
"yarn format",
"yarn lint:fix"
]
}
}