-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.42 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
108
109
110
111
112
113
114
115
116
117
{
"name": "simple-react-app",
"version": "2.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"extension": "yarn export && ts-node tools/convertNextExportIntoExtension",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "next lint",
"test": "jest --watch --no-cache",
"test:ci": "jest --ci",
"e2e": "cypress open",
"e2e:ci": "cypress run",
"test-all": "yarn lint && yarn type-check && yarn test",
"analyze": "cross-env-shell ANALYZE=true next build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "yarn run type-check",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(js|jsx|ts|tsx)": [
"prettier --write",
"jest --findRelatedTests"
],
"*.@(json,md,yaml,yml)": [
"prettier --write"
]
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.6.2",
"@contentful/rich-text-types": "^15.6.2",
"@headlessui/react": "^1.4.2",
"@loadable/component": "^5.15.2",
"@next/bundle-analyzer": "^10.0.9",
"@reduxjs/toolkit": "^1.5.0",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/typography": "^0.5.2",
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"classnames": "^2.3.1",
"contentful": "^9.1.4",
"firebase": "^7.15.5",
"firebase-admin": "^9.4.2",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"next": "^12.0.3",
"next-compose-plugins": "^2.2.1",
"next-optimized-images": "^2.6.2",
"next-pwa": "^5.0.6",
"next-svgr": "^0.0.2",
"next-with-less": "^2.0.5",
"null-loader": "^4.0.1",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-redux": "^7.2.6",
"react-spring": "9.4.2",
"react-tippy": "^1.4.0",
"react-visibility-sensor": "^5.1.1",
"reactfire": "^3.0.0-rc.0",
"redux": "^4.0.5",
"sass": "^1.32.8",
"swr": "0.2.3",
"webp-loader": "^0.6.0"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@jest/types": "^27.2.5",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.2",
"@types/node": "^17.0.9",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.34",
"@types/react-redux": "^7.1.16",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"autoprefixer": "^10.4.4",
"axe-core": "^4.3.5",
"cypress": "^9.5.2",
"cypress-axe": "^0.14.0",
"cypress-dark": "^1.8.3",
"eslint": "<8.0.0",
"eslint-config-next": "^12.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-testing-library": "^5.0.0",
"husky": "^4.2.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"jest-watch-typeahead": "^1.0.0",
"lint-staged": "10.0.10",
"postcss": "^8.4.12",
"prettier": "^2.4.1",
"react-test-renderer": "^17.0.2",
"redux-devtools": "^3.7.0",
"tailwindcss": "^3.0.23",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "4.3.2"
},
"packageManager": "[email protected]"
}