-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.78 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
{
"name": "app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev & tsc --watch",
"build": "next build && next export",
"start": "next start",
"lint": "eslint . --ext ts,tsx,js,jsx",
"add-member": "npx hygen gen intro",
"test:vrt": "playwright test -u && reg-cli .reg/actual .reg/expected .reg/diff -R .reg/index.html"
},
"engines": {
"node": "20.16.0",
"npm": "10.8.1"
},
"dependencies": {
"next": "^12.2.5",
"next-optimized-images": "^2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.3.0",
"@playwright/test": "^1.45.3",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.2.10",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"husky": "^4.3.8",
"hygen": "^6.0.4",
"image-trace-loader": "^1.0.2",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^9.0.0",
"jimp": "^0.16.1",
"lint-staged": "^10.5.3",
"next-compose-plugins": "^2.2.1",
"prettier": "^2.2.1",
"reg-cli": "^0.18.6",
"responsive-loader": "^2.3.0",
"typescript": "^4.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"homepage": "https://oystersjp.github.io/"
}