-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.81 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
{
"name": "gokan-search",
"version": "0.1.0",
"main": "index.js",
"repository": "https://github.com/Roadagain/gokan-search.git",
"author": "Roadagain <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "run-s lint:*",
"lint:eslint": "next lint --max-warnings=0",
"lint:format": "prettier --check .",
"test": "run-s test:*",
"test:tsc": "tsc -d",
"test:jest": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.12.3",
"@vercel/analytics": "^1.0.1",
"next": "^13.0.0",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-infinite-scroller": "^1.2.6"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.0-beta.31",
"@storybook/addon-interactions": "^7.0.0-beta.31",
"@storybook/addon-links": "^7.0.0-beta.31",
"@storybook/nextjs": "^7.0.0-beta.31",
"@storybook/testing-library": "^0.1.0",
"@swc/core": "^1.3.56",
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.1",
"@types/node": "^20.1.0",
"@types/react": "^18.0.15",
"@types/react-infinite-scroller": "^1.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.40.0",
"eslint-config-next": "13.4.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.12",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"storybook": "^7.0.0-beta.31",
"typescript": "^5.0.4"
}
}