-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.34 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
71
72
73
74
75
76
77
{
"name": "sponge-next-template",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.6.11"
},
"scripts": {
"dev": "next dev -p 3366",
"dev:t": "pnpm dev --turbo",
"build": "next build",
"start": "next start -p 3366",
"commit": "cz",
"commit:amend": "git commit --amend --no-edit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"update:tran": "i18nexus pull -p app/i18n/locales --clean",
"release": "standard-version -- --release-as minor --no-verify",
"release:patch": "standard-version -- --release-as patch --no-verify",
"release:major": "standard-version -- --release-as major --no-verify",
"prepare": "husky install",
"lint": "next lint"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.10",
"clsx": "^2.1.0",
"i18next": "^23.7.18",
"i18next-resources-to-backend": "^1.2.0",
"inversify": "^6.0.2",
"lodash-es": "^4.17.21",
"mobx": "^6.12.0",
"mobx-react-lite": "^4.0.5",
"next": "14.1.0",
"next-i18n-router": "^5.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^14.0.1",
"reflect-metadata": "^0.2.1",
"tailwindcss": "3.4.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@commitlint/cli": "^18.5.0",
"@commitlint/config-conventional": "^18.5.0",
"@testing-library/jest-dom": "^6.2.1",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/uuid": "^9.0.7",
"autoprefixer": "^10.4.17",
"commitizen": "^4.3.0",
"daisyui": "^4.6.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"i18nexus-cli": "^3.3.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"postcss-import": "^16.0.0",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"standard-version": "^9.5.0",
"typescript": "^5.3.3",
"typescript-plugin-css-modules": "^5.0.2"
}
}