-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.97 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.97 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "gender-decoder-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "pnpm lang && next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci",
"lang:extract": "NODE_ENV=development lingui extract --clean",
"lang:compile": "lingui compile",
"lang": "pnpm lang:extract && pnpm lang:compile",
"prepare": "husky",
"detect-unused": "node scripts/detect-unused.js",
"detect-circular-imports": "madge --circular src/",
"all": "pnpm build && jest && pnpm detect-unused && pnpm detect-circular-imports"
},
"dependencies": {
"@lingui/core": "5.4.1",
"@lingui/react": "5.4.1",
"classnames": "^2.5.1",
"is-hotkey": "^0.2.0",
"lodash": "^4.17.21",
"make-plural": "^7.4.0",
"next": "15.5.9",
"react": "19.2.1",
"react-dom": "19.2.1"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@lingui/cli": "5.4.1",
"@lingui/loader": "5.4.1",
"@lingui/macro": "5.4.1",
"@tailwindcss/postcss": "^4.1.13",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.8.0",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/is-hotkey": "^0.1.10",
"@types/jest": "30.0.0",
"@types/lodash": "^4.17.20",
"@types/node": "24.10.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"autoprefixer": "^10.4.21",
"babel-cli": "^6.26.0",
"babel-jest": "30.0.5",
"babel-plugin-macros": "^3.1.0",
"eslint": "9.34.0",
"eslint-config-next": "15.5.7",
"husky": "9.1.7",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
"madge": "8.0.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.13",
"typescript": "5.9.3"
},
"pnpm": {
"overrides": {
"simple-swizzle": "0.2.4"
}
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=20"
}
}