-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.88 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.88 KB
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
{
"name": "launches-test",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"storybook": "start-storybook -s public",
"build-storybook": "build-storybook",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.9",
"@tanstack/react-query": "^4.24.9",
"@tanstack/react-query-devtools": "^4.24.9",
"eslint-plugin-prettier": "^4.2.1",
"ky": "^0.33.2",
"ky-universal": "^0.11.0",
"next": "^13.1.2",
"prettier": "^2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@next/eslint-plugin-next": "^13.1.6",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"babel-loader": "^8.3.0",
"eslint": "7.29.0",
"eslint-config-next": "^13.1.2",
"eslint-config-prettier": "^8.6.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"msw": "^1.0.1",
"msw-storybook-addon": "^1.7.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"msw": {
"workerDirectory": "public"
}
}