-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.7 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.7 KB
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
{
"name": "next-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "npm run test -- --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@babel/runtime": "^7.27.0",
"@types/styled-components": "^5.1.34",
"next": "14.2.15",
"next-pwa": "^5.6.0",
"react": "^18",
"react-dom": "^18",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@chromatic-com/storybook": "^1.6.1",
"@eslint/js": "^9.12.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.5.3",
"@storybook/addon-links": "^8.6.12",
"@storybook/addon-onboarding": "^8.2.5",
"@storybook/blocks": "^8.5.3",
"@storybook/nextjs": "^8.6.11",
"@storybook/react": "^8.2.5",
"@storybook/test": "^8.3.5",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^22",
"@types/react": "^18",
"@types/react-dom": "^18",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.6",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.10.1",
"globals": "^15.12.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-styled-components": "^7.2.0",
"prettier": "^3.3.3",
"storybook": "^8.4.5",
"typescript": "^5",
"typescript-eslint": "^7.16.1"
}
}