-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.62 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.62 KB
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
{
"name": "safeskies",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"type-check": "tsc --noEmit",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test:watch": "TZ=UTC jest --watch",
"prepare": "husky && husky install"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write",
"jest --bail --findRelatedTests"
]
},
"dependencies": {
"@atproto/api": "^0.13.16",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tanstack/react-query": "^5.73.3",
"@tanstack/react-query-devtools": "^5.73.3",
"autoprefixer": "^10.4.20",
"classcat": "^5.0.5",
"date-fns": "^4.1.0",
"hls.js": "^1.5.17",
"jest-environment-jsdom": "^29.7.0",
"js-cookie": "^3.0.5",
"next": ">=15.4.7",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest-axe": "^3.5.9",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.16",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.1",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"lint-staged": "^15.2.11",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}