-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.85 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
{
"name": "cats",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest && npm run lint",
"fix-formatting": "prettier --write './src/**/*.{ts,tsx}'",
"lint": "next lint"
},
"dependencies": {
"@mdx-js/loader": "^1.6.21",
"@next/mdx": "^10.0.2",
"airtable": "^0.10.1",
"base58": "^2.0.1",
"focus-trap-react": "^8.6.0",
"framer-motion": "^3.2.2-rc.1",
"match-sorter": "^6.0.2",
"next": "^11.1.2",
"next-images": "^1.6.2",
"polish-plurals": "^1.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"use-throttle": "^0.0.3"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@fullhuman/postcss-purgecss": "^3.0.0",
"@testing-library/dom": "^7.26.6",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.1.2",
"@types/node": "^14.14.6",
"@types/react": "^16.9.56",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"autoprefixer": "^10.2.6",
"babel-jest": "^26.6.3",
"eslint": "^7.29.0",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"postcss": "^8.3.5",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.1",
"tailwindcss": "^2.2.2",
"typescript": "^4.3.4"
},
"resolutions": {
"postcss-focus-within": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"npm run fix-formatting"
]
}
}