-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.93 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.93 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
{
"name": "comic-survey",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier:check": "prettier --list-different 'src/**/*.{js,jsx,ts,tsx}'",
"prettier:fix": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook",
"test": "jest",
"prisma:migrate": "prisma migrate dev --schema ./src/prisma/schema.prisma --name",
"prisma:format": "prisma format --schema ./src/prisma/schema.prisma"
},
"dependencies": {
"@prisma/client": "^3.15.1",
"next": "12.1.5",
"prisma": "^3.15.1",
"react": "18.0.0",
"react-dom": "18.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@storybook/addon-a11y": "^6.5.9",
"@storybook/addon-actions": "^6.5.6",
"@storybook/addon-docs": "^6.5.9",
"@storybook/addon-essentials": "^6.5.6",
"@storybook/addon-interactions": "^6.5.8",
"@storybook/addon-links": "^6.5.6",
"@storybook/jest": "^0.0.10",
"@storybook/react": "^6.5.6",
"@storybook/testing-library": "^0.0.11",
"@testing-library/jest-dom": "^5.16.4",
"@types/jest": "^28.1.1",
"@types/node": "17.0.25",
"@types/react": "18.0.6",
"@types/react-dom": "18.0.2",
"@typescript-eslint/parser": "^5.27.1",
"babel-loader": "^8.2.5",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-storybook": "^0.5.12",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-transform-stub": "^2.0.0",
"msw": "^0.44.2",
"msw-storybook-addon": "^1.6.3",
"prettier": "^2.6.2",
"prettier-eslint": "^15.0.1",
"ts-jest": "^28.0.4",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.7.2"
},
"msw": {
"workerDirectory": "public"
}
}