-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "wolf-site",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "patch-package",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint '**/*{.ts,.tsx,.js}' --fix",
"prettify": "pretty-quick --pattern '**/*.*(js|ts|tsx)'"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn lint"
}
},
"dependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@reacticons/ionicons": "^5.5.2",
"@svgr/webpack": "^5.5.0",
"next": "11.0.1",
"node-fetch": "^2.6.1",
"nprogress": "^0.2.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/node-fetch": "^2.5.12",
"@types/nprogress": "^0.2.0",
"@types/react": "17.0.16",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"typescript": "4.3.5"
}
}