-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) Β· 1.6 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) Β· 1.6 KB
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
{
"name": "dev-event-web",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"scripts": {
"dev": "next dev -p 5000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"axios": "^0.26.1",
"classnames": "^2.3.1",
"cookie": "^0.5.0",
"dayjs": "^1.11.2",
"js-cookie": "^3.0.5",
"jwt-decode": "^3.1.2",
"marked": "^4.3.0",
"next": "12.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"react-loader-spinner": "^6.1.6",
"react-modal": "^3.14.4",
"sass": "^1.50.0",
"swr": "^1.2.2",
"three": "0.149.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@svgr/webpack": "^6.2.1",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/cookie": "^0.5.1",
"@types/jest": "29",
"@types/js-cookie": "^3.0.4",
"@types/marked": "^4.3.0",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/react-modal": "^3.13.1",
"@types/three": "0.149.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"babel-loader": "^8.2.4",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29",
"jest-environment-jsdom": "29",
"prettier": "2.6.2",
"ts-jest": "29",
"typescript": "4.6.3"
}
}