-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2 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
{
"name": "nomos",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.prod.json && vite build",
"preview": "vite preview",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test": "vitest --ui",
"coverage": "vitest run --coverage",
"cypress": "npx cypress open"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/lab": "^5.0.0-alpha.122",
"@mui/material": "^5.11.13",
"@tanstack/react-query": "^4.26.1",
"axios": "^1.3.4",
"localforage": "^1.10.0",
"match-sorter": "^6.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0",
"sort-by": "^1.2.0",
"use-context-selector": "^1.4.1"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@rocketseat/eslint-config": "^1.2.0",
"@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-vite": "^0.4.2",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"@vitest/coverage-c8": "^0.29.3",
"@vitest/ui": "^0.29.3",
"babel-loader": "^8.3.0",
"cypress": "^12.9.0",
"eslint": "^8.35.0",
"eslint-plugin-storybook": "^0.6.11",
"jsdom": "^21.1.1",
"msw": "^1.1.0",
"msw-storybook-addon": "^1.8.0",
"nock": "^13.3.0",
"storybook-addon-react-router-v6": "^0.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vitest": "^0.29.3"
},
"msw": {
"workerDirectory": "public"
}
}