-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.5 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
{
"name": "nextjs-example",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:dev": "NODE_ENV=test next build",
"start": "next start",
"start:dev": "NODE_ENV=test next start",
"i18n": "lingui extract --clean",
"postinstall": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "yarn exec lint-staged --concurrent false"
},
"lint-staged": {
"src/**/*.js?(x)": [
"prettier --write",
"eslint --fix"
],
"src/**/*.ts?(x)": [
"prettier --parser=typescript --write",
"eslint --fix"
],
"*.scss": "stylelint --syntax=scss"
},
"dependencies": {
"@lingui/core": "^4.6.0",
"@lingui/react": "^4.6.0",
"ahooks": "^3.7.8",
"dayjs": "^1.11.10",
"jotai": "^2.6.0",
"next": "14.0.3",
"react": "^18",
"react-dom": "^18",
"styled-components": "^6.1.1"
},
"devDependencies": {
"@applint/spec": "^1.2.3",
"@commitlint/cli": "^18.4.3",
"@lingui/cli": "^4.6.0",
"@lingui/loader": "^4.6.0",
"@lingui/macro": "^4.6.0",
"@lingui/swc-plugin": "^4.0.4",
"@swc-jotai/react-refresh": "^0.1.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@unocss/postcss": "^0.58.0",
"eslint": "^8.55.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"simple-git-hooks": "^2.9.0",
"stylelint": "^15.11.0",
"typescript": "^5",
"unocss": "^0.58.0"
},
"engines": {
"node": ">=18.0.0"
}
}