-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.16 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": "next-page-router-scaffold-2024",
"version": "0.1.0",
"private": false,
"engines": {
"npm": ">=10.5.0",
"node": ">=20.12.2"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier . --write",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"next": "^14.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "^6.1.11",
"tailwind-styled-components": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@chromatic-com/storybook": "^1.5.0",
"@storybook/addon-actions": "^8.1.10",
"@storybook/addon-essentials": "^8.1.10",
"@storybook/addon-interactions": "^8.1.10",
"@storybook/addon-links": "^8.1.10",
"@storybook/nextjs": "^8.1.10",
"@storybook/react": "^8.1.10",
"@storybook/test": "^8.1.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.15.11",
"@types/react": "^18.0.31",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-testing-library": "^5.10.2",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"next-test-api-route-handler": "^4.0.7",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-loader": "^7.1.0",
"prettier": "^2.8.7",
"storybook": "^8.1.10",
"tailwindcss": "^3.3.0",
"typescript": "^5.5.2",
"util": "^0.12.5"
}
}