-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.71 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "planerinnenfuerdwe",
"version": "1.0.0",
"private": true,
"dependencies": {
"@hookform/resolvers": "2.2.0",
"@supabase/supabase-js": "1.9.0",
"@tailwindcss/forms": "0.3.2",
"@tailwindcss/typography": "0.4.0",
"next-i18next": "8.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "7.28.1",
"react-markdown": "6.0.1",
"react-router-dom": "5.2.0",
"secure-random-password": "0.2.2",
"swr": "0.5.5",
"yup": "0.32.9"
},
"devDependencies": {
"@storybook/addon-actions": "6.4.19",
"@storybook/addon-essentials": "6.4.19",
"@storybook/addon-links": "6.4.19",
"@storybook/addon-postcss": "2.0.0",
"@storybook/addon-storyshots": "6.4.19",
"@storybook/react": "6.4.19",
"@testing-library/jest-dom": "5.16.3",
"@testing-library/react": "12.1.4",
"@testing-library/user-event": "13.5.0",
"@types/jest": "26.0.22",
"@types/node": "12.20.7",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-router-dom": "5.1.7",
"@types/secure-random-password": "0.2.0",
"@typescript-eslint/eslint-plugin": "4.15.2",
"@typescript-eslint/parser": "4.15.2",
"autoprefixer": "10.1.0",
"babel-jest": "27.5.1",
"commitizen": "4.2.4",
"eslint": "7.23.0",
"eslint-config-prettier": "8.1.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-storybook": "^0.5.7",
"husky": "6.0.0",
"jest": "27.5.1",
"lint-staged": "10.5.4",
"next": "12.1.1",
"next-router-mock": "0.1.3",
"postcss": "8.1.7",
"prettier": "2.2.1",
"storybook-addon-next-router": "3.1.1",
"tailwindcss": "2.0.2",
"tsconfig-paths-webpack-plugin": "3.5.1",
"typescript": "4.6.3",
"whatwg-fetch": "3.4.1"
},
"scripts": {
"cm": "cz",
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --maxWorkers=50% --coverage --collectCoverageFrom='./(src|pages)/**/*.ts(x)?' --collectCoverageFrom='!./(src|pages)/**/*.stories.ts(x)?'",
"test:watch": "npm run test -- --watch",
"test:ci": "jest --runInBand",
"lint": "eslint --ext js,jsx,ts,tsx .",
"lint-fix": "npm run lint -- --fix",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"prepare": "husky install",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook -s ./public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"proxy": "http://localhost:4000"
}