-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
53 lines (53 loc) · 1.53 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write . && eslint . --fix",
"postinstall": "git config core.hooksPath .githooks",
"precommit": "lint-staged",
"test": "yarn jest",
"test:coverage": "yarn jest --coverage"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.2.0",
"@contentful/rich-text-types": "^15.1.0",
"@formspark/use-formspark": "^0.1.35",
"clsx": "^1.1.1",
"contentful": "^9.0.0",
"daisyui": "^1.14.0",
"firebase-admin": "^9.11.1",
"next": "^12.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-maps": "^9.4.5",
"react-icons": "^4.3.1",
"react-lottie": "^1.2.3",
"stripe": "^8.168.0"
},
"devDependencies": {
"@testing-library/dom": "^8.7.1",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.1",
"@testing-library/user-event": "^13.2.1",
"autoprefixer": "^10.2.6",
"babel-jest": "^27.2.0",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"http-status-codes": "^2.1.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.0",
"jest-canvas-mock": "^2.3.1",
"lint-staged": "^11.1.2",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"react-test-renderer": "^17.0.2",
"tailwindcss": "^2.2.4"
}
}