-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.07 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
{
"name": "isuncoin-official",
"version": "0.1.4",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"production": "next start -p 80",
"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"
},
"dependencies": {
"axios": "^1.7.4",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"googleapis": "^140.0.1",
"i18next": "^23.12.2",
"lottie-web": "^5.12.2",
"next": "^14.2.12",
"next-i18next": "^15.3.1",
"nodemailer": "^6.9.14",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.1",
"react-simple-maps": "^3.0.0",
"react-slick": "^0.30.2",
"react-toastify": "^10.0.5",
"react-usestateref": "^1.0.9",
"slick-carousel": "^1.8.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@babel/eslint-plugin": "^7.24.7",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-simple-maps": "^3.0.6",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.12",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tailwindcss": "^3.17.3",
"husky": "^4.3.8",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.4",
"ts-jest": "^29.1.4",
"typescript": "^5"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && lint-staged"
}
}
}