-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.43 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
{
"name": "frontend-academy-2022",
"version": "0.1.0",
"private": true,
"sideEffects": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "ANALYZE=1 yarn build",
"build:vercel": "yarn build && yum install graphviz -y && yarn create-architecture-graph",
"start": "next start",
"lint": "next lint",
"format": "prettier --check .",
"prepare": "husky install",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"create-architecture-graph": "./scripts/create-architecture-maps.sh",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"type-check": "tsc"
},
"dependencies": {
"@hookform/resolvers": "^2.9.1",
"@sentry/nextjs": "^7.3.0",
"date-fns": "^2.28.0",
"next": "^12",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-hook-form": "^7.32.1",
"react-query": "^3.39.1",
"styled-components": "^5.3.5",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@commitlint/cli": "^16.2.4",
"@faker-js/faker": "^7.3.0",
"@next/bundle-analyzer": "^12.2.2",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@strv/commitlint-config": "^2.1.0",
"@strv/eslint-config-react": "^4.1.0",
"@strv/eslint-config-typescript": "^3.1.2",
"@strv/prettier-config": "^2.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.3",
"@types/node": "17.0.31",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@types/styled-components": "^5.1.25",
"babel-loader": "^8.2.5",
"cypress": "^10.2.0",
"dependency-cruiser": "^11.11.0",
"eslint": "8.14.0",
"eslint-config-next": "12.1.6",
"husky": "^7.0.4",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"react-hooks-testing-library": "^0.6.0",
"react-test-renderer": "^18.2.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.6.4"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "5.27.1"
}
}