-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.7 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
{
"name": "gender-decoder-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn 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": "yarn lang:extract && yarn lang:compile",
"prepare": "husky install",
"detect-unused": "node scripts/detect-unused.js",
"detect-circular-imports": "madge --circular src/"
},
"dependencies": {
"@lingui/react": "^3.14.0",
"classnames": "^2.3.1",
"is-hotkey": "^0.2.0",
"lodash": "^4.17.21",
"make-plural": "^7.1.0",
"next": "12.2.2",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@lingui/cli": "^3.14.0",
"@lingui/loader": "^3.14.0",
"@lingui/macro": "^3.14.0",
"@tailwindcss/typography": "^0.5.4",
"@testing-library/dom": "^8.16.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.3.0",
"@types/is-hotkey": "^0.1.7",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.182",
"@types/node": "18.0.6",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.7",
"babel-cli": "^6.26.0",
"babel-jest": "^28.1.3",
"babel-plugin-macros": "^3.1.0",
"eslint": "8.20.0",
"eslint-config-next": "12.2.2",
"husky": "^8.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"madge": "^5.0.1",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.6",
"typescript": "4.7.4"
}
}