-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.72 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
{
"name": "killer-rabbit",
"version": "2.0.0",
"private": true,
"description": "killer-rabbit",
"author": "O.",
"keywords": [
"nextjs"
],
"browserslist": [
"defaults"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "npx serve@latest out",
"lint": "next lint",
"prepare": "husky install",
"download:assets": "./download-from-remote.sh",
"superclean": "rm -rf .next && rm -rf .cache && rm -rf out && rm -rf .wordpress-cache"
},
"dependencies": {
"@apollo/client": "^3.10.4",
"@next/bundle-analyzer": "^14.2.3",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"next": "^14.2.3",
"next-view-transitions": "^0.2.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"eslint": "^8.54.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^49.0.0",
"fs-extra": "^11.2.0",
"glob": "^10.4.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"sharp": "^0.33.4",
"svgo": "^3.0.4"
},
"lint-staged": {
"*.js": [
"eslint --cache --fix"
],
"**/*.svg": "svgo public -r"
},
"resolutions": {
"string-width": "4.2.3"
},
"supportedArchitecture": {
"os": [
"current",
"linux"
],
"cpu": [
"current",
"x64"
]
}
}