generated from mbti-nf-team/nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.04 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
{
"name": "picko-frontend",
"private": true,
"version": "0.0.1",
"description": "",
"license": "MIT",
"author": "for-earth",
"keywords": [],
"scripts": {
"dev": "next dev",
"build": "next build",
"serve": "yarn dlx serve@latest out",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"test:unit": "jest",
"test:watch": "jest --watch",
"test:watchAll": "jest --watchAll",
"test:coverage": "yarn test:unit --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test:e2e": "start-server-and-test dev http://localhost:3000 cypress:run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "https://github.com/for-earth/picko-frontend.git"
},
"bugs": {
"url": "https://github.com/for-earth/picko-frontend/issues"
},
"homepage": "https://github.com/for-earth/picko-frontend#readme",
"dependencies": {
"clsx": "^1.2.1",
"next": "^13.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zustand": "^4.3.8"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@next/eslint-plugin-next": "^13.4.3",
"@storybook/addon-essentials": "^7.0.17",
"@storybook/addon-interactions": "^7.0.17",
"@storybook/addon-links": "^7.0.17",
"@storybook/blocks": "^7.0.17",
"@storybook/nextjs": "^7.0.17",
"@storybook/react": "^7.0.17",
"@storybook/testing-library": "^0.1.0",
"@svgr/webpack": "6.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/babel__core": "^7",
"@types/jest": "^29.5.0",
"@types/jest-plugin-context": "^2",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@types/react-test-renderer": "^18.0.0",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"css-loader": "^6.7.3",
"cypress": "^12.9.0",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-cypress": "^2.13.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-testing-library": "^5.10.2",
"eslint-plugin-unused-imports": "^2.0.0",
"given2": "^2.1.7",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-plugin-context": "^2.9.0",
"react-test-renderer": "^18.2.0",
"sass": "^1.62.1",
"start-server-and-test": "^2.0.0",
"storybook": "^7.0.8",
"styled-jsx": "^5.1.2",
"typescript": "4.7.4",
"util": "^0.12.5",
"webpack": "^5.81.0"
},
"packageManager": "[email protected]"
}