-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.74 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
{
"name": "genshin",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=16.13"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "11.9.0",
"@emotion/styled": "11.8.1",
"isomorphic-unfetch": "3.1.0",
"next": "12.1.6",
"next-redux-wrapper": "7.0.5",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-redux": "^8.0.2",
"react-router-redux": "^4.0.8",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.1",
"reselect": "^4.1.5"
},
"devDependencies": {
"@types/react": "18.0.9",
"@typescript-eslint/eslint-plugin": "5.26.0",
"@typescript-eslint/parser": "5.26.0",
"babel-jest": "28.1.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.16.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.2.2",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.30.0",
"husky": ">=8.0.1",
"jest": "28.1.0",
"lint-staged": ">=12.4.2",
"prettier": "2.6.2",
"typescript": "4.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"pages/*.{ts,tsx}": [
"prettier --no-semi --single-quote --parser typescript --write",
"eslint --fix --ext",
"git add"
],
"src/**/*.{ts,tsx}": [
"prettier --no-semi --single-quote --parser typescript --write",
"eslint --fix --ext \"src/*.d.ts\"",
"git add"
],
"*.{js,css,md}": "prettier --write"
}
}