-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "cold_friendly_feud",
"version": "2.0.0",
"private": true,
"dependencies": {
"autoprefixer": "^10.1.0",
"axios": "^1.7.9",
"cookie-cutter": "^0.2.0",
"eslint": "^8.57.1",
"i18next": "^24.2.1",
"i18next-browser-languagedetector": "^8.0.2",
"lucide-react": "^0.469.0",
"next": "^14.2.23",
"next-themes": "^0.4.4",
"papaparse": "^5.5.1",
"postcss": "^8.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.4.0",
"tailwindcss": "^3.1.0"
},
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "NODE_ENV=production next start",
"start_local": "NODE_ENV=local next start",
"start_windows": "set NODE_ENV=local && next start",
"parse-locales": "i18next-scanner --config ./i18n/i18next-scanner.config.js",
"lint": "next lint",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/node": "22.10.5",
"@types/react": "19.0.3",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/parser": "^8.19.1",
"eslint-config-next": "^14.2.23",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.17.5",
"husky": "^8.0.0",
"i18next-scanner": "^4.6.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss-themer": "^4.1.1",
"typescript": "~5.1.6"
}
}