-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.25 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
{
"name": "feconf2024",
"version": "1.0.0",
"private": true,
"repository": "[email protected]:fedgkr/feconf2024.git",
"contributors": [
{
"name": "Chaehyun Kim",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/chaehyunkim1106"
},
{
"name": "Juyun Cheon",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/juyun-cheon-713b37243"
},
{
"name": "Daybrush",
"email": "[email protected]",
"url": "https://github.com/daybrush"
},
{
"name": "Jooyoung Moon",
"email": "[email protected]",
"url": "https://github.com/codemilli"
}
],
"homepage": "https://2024.feconf.kr",
"license": "MIT",
"scripts": {
"prepare": "panda codegen",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"env": "touch out/.nojekyll && echo '2024.feconf.kr' >> out/CNAME",
"push": "push-dir --dir=out --branch=gh-pages --cleanup --verbose",
"deploy": "npm run build && npm run env && npm run push"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.1",
"@react-three/drei": "^9.105.4",
"@react-three/fiber": "^8.16.2",
"@react-three/postprocessing": "^2.16.2",
"framer-motion": "^11.3.2",
"lodash-es": "^4.17.21",
"next": "14.2.3",
"react": "^18",
"react-dom": "^18",
"react-intersection-observer": "^9.13.0",
"three": "^0.163.0",
"use-intersection": "^0.2.1"
},
"devDependencies": {
"@pandacss/dev": "^0.43.0",
"@types/dat.gui": "^0.7.13",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/three": "^0.163.0",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"dat.gui": "^0.7.9",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.5",
"push-dir": "^0.4.1",
"typescript": "^5.1.6"
}
}