This repository has been archived by the owner on Jan 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
107 lines (107 loc) · 3.44 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
{
"name": "frontend",
"version": "1.3.6",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test dev http://localhost:3000 cypress:headless",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"postinstall": "husky install"
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^12.0.1",
"@testing-library/react-hooks": "^7.0.2",
"clipboard-polyfill": "^3.0.3",
"date-fns": "^2.25.0",
"html2canvas": "^1.3.2",
"jotai": "^1.4.0",
"next": "^12.0.1",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.4",
"react-datepicker": "^4.3.0",
"react-device-detect": "^2.1.2",
"react-dom": "^17.0.2",
"react-toastify": "^8.0.3",
"reactjs-popup": "^2.0.5"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"react": "*",
"react-dom": "*"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/runtime": "^7.15.4",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-docs": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-links": "^6.3.12",
"@storybook/builder-webpack5": "^6.3.12",
"@storybook/manager-webpack5": "^6.3.12",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.3.12",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/babel-core": "^6",
"@types/babel__core": "^7",
"@types/jest": "^27.0.2",
"@types/jest-plugin-context": "^2",
"@types/mdx-js__react": "^1",
"@types/node": "^16.11.0",
"@types/react": "17.0.30",
"@types/react-copy-to-clipboard": "^5",
"@types/react-datepicker": "^4",
"@types/sass": "^1",
"@types/supertest": "^2.0.11",
"@types/testing-library__jest-dom": "^5",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-core": "^6.26.3",
"babel-jest": "^27.2.5",
"babel-loader": "^8.2.2",
"css-loader": "^6.4.0",
"cypress": "^8.6.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.1",
"eslint-config-next": "^11.1.2",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.12.4",
"husky": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.5",
"jest-mdx-loader": "^0.1.1",
"jest-plugin-context": "^2.9.0",
"jest-transformer-mdx": "^3.3.0",
"sass": "^1.43.2",
"sass-loader": "^12.2.0",
"start-server-and-test": "^1.14.0",
"style-loader": "^3.3.0",
"supertest": "^6.1.6",
"transform-class-properties": "^1.0.0-beta",
"typescript": "4.4.4"
}
}