-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.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
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
{
"name": "adithyabhat.com",
"author": "@adithyabhat17",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write **/*.{js,ts,tsx}",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test:coverage": "jest --coverage -u --silent",
"test-all": "yarn lint && yarn type-check && yarn test:coverage",
"build": "yarn test-all && next build",
"build:now": "NODE_OPTIONS=--openssl-legacy-provider next build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-icons": "^1.3.0",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"dayjs": "^1.8.28",
"framer-motion": "^4.0.3",
"next": "13.5.5",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-datocms": "^1.2.6",
"react-dom": "18.2.0",
"react-hook-form": "^7.51.3",
"react-intersection-observer": "^8.30.1",
"react-lottie": "^1.2.3",
"react-markdown": "^9.0.1",
"react-masonry-css": "1.0.16",
"react-syntax-highlighter": "^15.5.0",
"remark": "^15.0.1",
"remark-html": "^16.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.14",
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^26.0.21",
"@types/node": "^14.14.35",
"@types/nprogress": "^0.2.3",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"@types/testing-library__react": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"autoprefixer": "^10.4.16",
"babel-jest": "^26.6.3",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.19.0",
"husky": "^5.2.0",
"identity-obj-proxy": "^3.0.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.0.10",
"node-mocks-http": "^1.9.0",
"postcss": "^8.4.31",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.2",
"tailwindcss": "^3.3.5",
"test-listen": "^1.1.0",
"ts-jest": "^26.1.1",
"typescript": "^4.1.2"
}
}