-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"name": "farmingsoon",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --write --ignore-path .gitignore .",
"vercel-deploy": "next build && next export"
},
"dependencies": {
"@stomp/stompjs": "^7.0.0",
"@types/js-cookie": "^3.0.6",
"@types/stompjs": "^2.3.9",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"axios": "^1.6.5",
"cookies-next": "^4.1.1",
"event-source-polyfill": "^1.0.31",
"js-cookie": "^3.0.5",
"lodash.debounce": "^4.0.8",
"next": "^14.1.0",
"react": "^18",
"react-dom": "^18",
"react-intersection-observer": "^9.8.1",
"recoil": "^0.7.7",
"sockjs-client": "^1.6.1",
"vercel": "^33.4.1"
},
"devDependencies": {
"@types/event-source-polyfill": "^1.0.5",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/sockjs-client": "^1.5.4",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"postcss": "^8",
"prettier": "^3.2.4",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}