-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.69 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
{
"name": "wedding-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint -- --fix",
"cypress": "cypress open",
"cypress:headless:record": "cypress run --record",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless",
"e2e:headless:record": "start-server-and-test start http://localhost:3000 cypress:headless:record",
"test": "cypress run && jest",
"jest": "jest",
"jest:watch": "jest --watch",
"jest:ci": "jest --ci",
"test:related": "jest --bail --findRelatedTests",
"prepare": "husky install",
"contentful-typescript-codegen": "contentful-typescript-codegen --output types/cms/generated/contentful.d.ts",
"check-env": "node -e 'console.log(process.env)' | grep contentful"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.11.1",
"@emotion/cache": "^11.5.0",
"@emotion/react": "^11.5.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.5",
"@mui/material": "^5.0.6",
"@react-google-maps/api": "^2.5.0",
"@supabase/supabase-js": "^1.29.1",
"axios": "^0.24.0",
"clsx": "^1.1.1",
"contentful": "^9.1.4",
"contentful-management": "^7.45.0",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"lodash.debounce": "^4.0.8",
"logrocket": "^2.1.1",
"next": "12.0.1",
"next-auth": "^4.0.6",
"react": "17.0.2",
"react-countdown": "^2.3.2",
"react-dom": "17.0.2",
"react-image-lightbox": "^5.1.4",
"react-webcam": "^6.0.0",
"sass": "^1.43.4",
"swr": "^1.1.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@testing-library/dom": "^8.10.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.2",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "16.11.6",
"@types/react": "17.0.33",
"@types/uuid": "^8.3.1",
"babel-jest": "^27.3.1",
"contentful-typescript-codegen": "^3.2.3",
"cypress": "^8.7.0",
"eslint": "7",
"eslint-config-next": "12.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jest-dom": "^4.0.0",
"lint-staged": ">=10",
"prettier": "2.4.1",
"start-server-and-test": "^1.14.0",
"typescript": "4.4.4"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,css,md,ts,tsx}": "prettier --write",
"*.{js,ts,tsx,jsx}": "npx lint"
}
}