-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.9 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.9 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "lifecycle-client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"lint-staged": "lint-staged",
"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"
},
"eslintConfig": {
"extends": [
"plugin:cypress/recommended"
]
},
"lint-staged": {
"**/*.{tsx,ts,jsx,js}": [
"eslint --fix"
]
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@next/bundle-analyzer": "^12.1.6",
"axios": "^0.27.2",
"browser-image-compression": "^2.0.0",
"emotion-reset": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"next": "12.1.6",
"next-seo": "^5.4.0",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-is": "^18.0.0",
"react-pdf": "^5.7.2",
"react-query": "^3.34.19",
"recoil": "0.7.2"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.9.2",
"@svgr/webpack": "^6.2.1",
"@testing-library/cypress": "^8.0.2",
"@types/cypress": "^1.1.3",
"@types/intercept-stdout": "^0",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.25",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/react-pdf": "^5.0.9",
"cypress": "^9.5.4",
"cypress-file-upload": "^5.0.8",
"cypress-react-selector": "^2.3.16",
"cypress-wait-until": "^1.7.2",
"dayjs": "^1.11.0",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"eslint-plugin-cypress": "^2.12.1",
"husky": "^7.0.0",
"intercept-stdout": "^0.1.2",
"lint-staged": "^12.3.7",
"start-server-and-test": "^1.14.0",
"typescript": "^4.6.3"
},
"packageManager": "yarn@3.2.0"
}