-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.44 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.44 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
{
"name": "frontend-final-project",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && prettier -w .",
"lint:strict": "eslint src",
"format": "prettier -w .",
"format:check": "prettier -c .",
"test": "echo \"Success\""
},
"dependencies": {
"@next/font": "13.1.1",
"@tailwindcss/forms": "^0.5.3",
"axios": "^1.2.1",
"clsx": "^1.2.1",
"dom7": "^4.0.4",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"next": "13.1.1",
"react": "18.2.0",
"react-collapse": "^5.1.1",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-paginate": "^8.1.4",
"swiper": "^8.4.6",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/react": "18.0.26",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"autoprefixer": "^10.4.13",
"eslint": "8.30.0",
"eslint-config-next": "^12.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
}
}