-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
141 lines (141 loc) · 4.5 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "next-boiler",
"version": "1.8.0",
"private": true,
"engines": {
"node": ">=16.0.0",
"yarn": "please-use-pnpm",
"npm": "please-use-pnpm",
"pnpm": ">=7"
},
"scripts": {
"dev": "next dev",
"start": "next start",
"release": "npx semantic-release",
"build": "next build",
"build:analyze": "ANALYZE=true npm run build",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"lint": "run-s lint:tsc lint:eslint",
"lint:eslint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:tsc": "tsc --noEmit --diagnostics",
"plop": "plop",
"test": "jest -c test/jest.config.js",
"e2e:open": "cypress open",
"e2e:run": "cypress run --config video=false",
"e2e:test": "start-server-and-test start http://localhost:3000 e2e:run",
"ci:test-build": "run-s lint test build e2e:test",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint:eslint -- --quiet --fix"
]
},
"dependencies": {
"@next/bundle-analyzer": "^12.2.3",
"@radix-ui/react-accordion": "^1.0.1",
"@radix-ui/react-id": "^1.0.0",
"@sentry/nextjs": "^7.17.2",
"@storybook/addons": "^6.5.13",
"@storybook/core-events": "^6.5.13",
"@vanilla-extract/babel-plugin": "^1.1.7",
"@vanilla-extract/css": "^1.9.1",
"@vanilla-extract/next-plugin": "^2.1.1",
"@vanilla-extract/recipes": "^0.2.5",
"@vanilla-extract/sprinkles": "^1.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"next": "12.2.3",
"next-compose-plugins": "^2.2.1",
"next-i18next": "^12.1.0",
"next-seo": "^5.11.1",
"polished": "^4.2.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.6.0",
"react-use": "^17.4.0",
"require-from-string": "^2.0.2",
"semantic-release": "^19.0.5",
"swr": "^1.3.0",
"tailwindcss": "^3.2.1",
"zustand": "4.1.3"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@next/eslint-plugin-next": "^12.2.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-a11y": "^6.5.13",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.5.13",
"@storybook/api": "^6.4.0",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/client-api": ">=6.4.0",
"@storybook/components": "^6.4.0",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/preset-scss": "^1.0.3",
"@storybook/preview-web": ">=6.4.0",
"@storybook/react": "^6.5.13",
"@storybook/testing-react": "^1.3.0",
"@storybook/theming": "^6.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.6",
"@types/jest-axe": "^3.5.5",
"@types/node": "^18.11.7",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/tailwindcss": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vanilla-extract/webpack-plugin": "^2.2.0",
"autoprefixer": "^10.4.13",
"axe-core": "^4.5.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"cypress": "^10.11.0",
"cypress-axe": "^1.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.3",
"jest-axe": "^6.0.0",
"jest-environment-jsdom": "^28.1.3",
"jest-extended": "^3.1.0",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"nock": "^13.2.9",
"npm-run-all": "^4.1.5",
"plop": "^3.1.1",
"postcss": "^8.1.0",
"prettier": "^2.7.1",
"sass-loader": "*",
"start-server-and-test": "^1.14.0",
"style-loader": "^3.3.1",
"ts-jest": "^28.0.7",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.8.4",
"webpack": "5.74.0"
},
"volta": {
"node": "16.16.0"
}
}