-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.16 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.16 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "timelogger-web",
"version": "0.1.0",
"private": true,
"scripts": {
"test": "jest",
"dev": "next dev -p 5656",
"build": "next build",
"start": "next start -p 5656",
"lint:prettier": "prettier --check .",
"fix:prettier": "npm run lint:prettier -- --write",
"lint:eslint": "eslint .",
"fix:eslint": "npm run lint:eslint -- --fix",
"lint:next": "next lint",
"lint": "run-s lint:*",
"format": "run-s fix:*",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN",
"api-mock:start": "prism mock -p 5757 public/docs/api/openapi.yaml",
"generate:schema": "openapi-typescript public/docs/api/openapi.yaml --output src/openapi/schema.ts"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/server": "^11.10.0",
"@mantine/core": "^6.0.6",
"@mantine/ds": "^6.0.6",
"@mantine/form": "^6.0.6",
"@mantine/hooks": "^6.0.6",
"@mantine/next": "^6.0.6",
"@mantine/prism": "^6.0.6",
"@next/font": "13.1.6",
"@tabler/icons-react": "^2.14.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"jsonwebtoken": "^9.0.0",
"next": "13.1.6",
"next-auth": "^4.20.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^3.1.4",
"react-icons": "^4.8.0",
"typescript": "4.9.4",
"zod": "^3.20.6"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@stoplight/prism-cli": "^4.13.0",
"@storybook/addon-a11y": "^6.5.16",
"@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/eslint": "^8.21.1",
"@types/jest": "^29.4.0",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"babel-loader": "^8.3.0",
"chromatic": "^6.17.1",
"eslint": "^8.34.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"eslint-plugin-testing-library": "^5.10.2",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"msw": "^1.0.1",
"msw-storybook-addon": "^1.7.0",
"npm-run-all": "^4.1.5",
"openapi-typescript": "^6.2.4",
"prettier": "^2.8.4",
"storybook-addon-next": "^1.7.2",
"whatwg-fetch": "^3.6.2"
},
"msw": {
"workerDirectory": "public"
},
"readme": "ERROR: No README data found!",
"_id": "timelogger-web@0.1.0"
}