-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 2.19 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
{
"name": "boilerplate-nextjs",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test:unit": "vitest run",
"watch:unit": "vitest watch",
"coverage": "vitest run --coverage",
"coverage:preview": "serve coverage -l 3001",
"test:e2e": "cypress run",
"watch:e2e": "cypress open",
"test:ci": "start-test dev http://localhost:3000 'pnpm cypress run'",
"generate": "plop",
"prepare": "is-ci || husky install",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"storybook:preview": "serve storybook-static -l 3001"
},
"dependencies": {
"@types/node": "20.8.2",
"@types/react": "18.2.24",
"@types/react-dom": "18.2.8",
"autoprefixer": "10.4.16",
"next": "13.5.4",
"postcss": "8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.3",
"typescript": "5.2.2"
},
"devDependencies": {
"@storybook/addon-essentials": "7.4.5",
"@storybook/addon-styling": "1.3.7",
"@storybook/blocks": "7.4.5",
"@storybook/nextjs": "7.4.5",
"@storybook/react": "7.4.5",
"@storybook/testing-library": "0.2.2",
"@testing-library/cypress": "10.0.1",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.5.1",
"@types/jest": "29.5.5",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"@vitejs/plugin-react": "4.1.0",
"@vitest/coverage-v8": "0.34.6",
"cypress": "13.3.0",
"eslint": "8.50.0",
"eslint-config-next": "13.5.4",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-storybook": "0.6.14",
"husky": "8.0.3",
"is-ci": "3.0.1",
"jsdom": "22.1.0",
"lint-staged": "14.0.1",
"plop": "4.0.0",
"plop-action-eslint": "0.4.0",
"prettier": "3.0.3",
"prettier-plugin-tailwindcss": "0.5.4",
"serve": "14.2.1",
"start-server-and-test": "2.0.1",
"storybook": "7.4.5",
"vitest": "0.34.6"
}
}