-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 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
{
"name": "FAITH",
"version": "0.8.1+1",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint && eslint --fix --ext .js,.jsx,.ts,.tsx .",
"test": "jest",
"check-format": "prettier --ignore-path .gitignore --list-different \"**/*.+(js|jsx|ts|tsx|json)\"",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|jsx|ts|tsx|json)\"",
"validate": "npm run test && npm run check-format && npm run lint",
"production": "next start -p 80"
},
"dependencies": {
"@hello-pangea/dnd": "^16.6.0",
"@passwordless-id/webauthn": "^1.6.1",
"@types/cookie": "^0.6.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cookie": "^0.6.0",
"dotenv": "^16.4.5",
"i18next": "^23.14.0",
"lottie-react": "^2.4.0",
"marked": "^14.1.1",
"next": "14.2.4",
"next-i18next": "^15.3.1",
"react": "^18",
"react-dom": "^18",
"react-i18next": "^15.0.1",
"react-toastify": "^10.0.5",
"react-usestateref": "^1.0.9",
"tailwind-merge": "^2.3.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/eslint-plugin": "^7.24.7",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.4",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tailwindcss": "^3.17.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"postcss": "^8",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
},
"engines": {
"node": ">=20.15.0"
}
}