-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
78 lines (78 loc) · 2.19 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
{
"name": "spec-next",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"prettier": "prettier",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"lint:staged": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"@babel/preset-env": "^7.19.1",
"@sentry/browser": "^7.13.0",
"@sentry/node": "^7.13.0",
"@zeit/next-source-maps": "0.0.4-canary.1",
"algoliasearch": "^4.14.2",
"babel-loader": "^8.2.5",
"conditional-wrap": "^1.0.2",
"fathom-client": "^3.5.0",
"isomorphic-unfetch": "^3.1.0",
"next": "^12.3.1",
"next-seo": "^5.5.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-instantsearch-dom": "^6.33.0",
"react-markdown": "^8.0.3",
"rehype-raw": "^6.1.1",
"rehype-sanitize": "^5.0.1",
"remove-markdown": "^0.5.0",
"stopword": "^2.0.5",
"styled-components": "^5.3.5",
"styled-normalize": "^8.0.7",
"throttle-debounce": "^5.0.0",
"use-dark-mode": "^2.3.1",
"webpack": "^5.74.0"
},
"devDependencies": {
"@babel/preset-flow": "^7.18.6",
"@bahmutov/add-typescript-to-cypress": "^2.1.2",
"@cypress/browserify-preprocessor": "^3.0.2",
"@cypress/webpack-preprocessor": "^5.12.2",
"@types/chai": "^4.3.3",
"@types/jest": "^29.0.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.23",
"@types/react": "^17.0.43",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^2.0.7",
"cypress": "^9.7.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"husky": "^7.0.4",
"lint-staged": "^12.4.3",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"typescript": "^4.6.4",
"typescript-eslint-parser": "^22.0.0"
},
"resolutions": {
"remark-parse": "^8.0.1"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"pre-commit": "lint:staged"
}