-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.05 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
{
"name": "smashtierlist",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run build:data && next dev",
"build": "npm run build:data && next build",
"build:data": "node ./scripts/build-data.js",
"gen-character-images": "node ./scripts/gen-character-images.js",
"start": "next start",
"eslint": "standard"
},
"husky": {
"hooks": {
"pre-commit": "npm run eslint"
}
},
"dependencies": {
"@svgr/webpack": "^5.1.0",
"classnames": "^2.2.6",
"fuse.js": "^3.4.6",
"glob": "^7.1.6",
"intersection-observer": "^0.7.0",
"next": "^9.2.1",
"next-seo": "^4.4.0",
"preact": "^10.2.1",
"preact-render-to-string": "^5.1.4",
"react": "github:preact-compat/react#1.0.0",
"react-dom": "github:preact-compat/react-dom#1.0.0",
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.0.1"
},
"devDependencies": {
"husky": "^4.2.3",
"imagemin": "^7.0.1",
"imagemin-gm": "^2.0.2",
"imagemin-pngquant": "^8.0.0",
"imagemin-webp": "^5.1.0",
"standard": "^14.3.1"
}
}