-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "tutorme",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@rematch/core": "^2.0.0",
"@rematch/immer": "^2.0.0",
"@rematch/loading": "^2.0.0",
"@rematch/select": "^3.0.0",
"antd": "^4.12.2",
"axios": "^0.21.1",
"immer": "^8.0.1",
"localforage": "^1.9.0",
"lodash": "^4.17.20",
"next": "10.0.6",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-query": "^3.8.2",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"tailwindcss": "^2.0.2"
},
"devDependencies": {
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.25",
"@types/react": "^17.0.1",
"@types/react-redux": "^7.1.16",
"autoprefixer": "^10.2.4",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"next-plugin-antd-less": "^0.3.0",
"postcss": "^8.2.5",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "2.2.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts?(x)": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
}
}