-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.54 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
{
"name": "BeaconBox",
"version": "1.0.0",
"main": "index.js",
"private": true,
"scripts": {
"postinstall": "husky install",
"format": "eslint --fix && prettier --write",
"prepare": "husky"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --singleQuote --write",
"git add"
]
},
"workspaces": [
"./packages*"
],
"license": "MIT",
"dependencies": {
"@codesandbox/sandpack-react": "^2.18.2",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@hookform/resolvers": "^3.9.0",
"@motionone/utils": "^10.18.0",
"@next-auth/prisma-adapter": "^1.0.7",
"@radix-ui/react-label": "^2.1.0",
"@tabler/icons-react": "^3.11.0",
"@tsparticles/react": "^3.0.0",
"@types/bcrypt": "^5.0.2",
"bcrypt": "^5.1.1",
"clsx": "^2.1.1",
"facepaint": "^1.2.1",
"framer-motion": "^11.3.19",
"hex-rgb": "^5.0.0",
"next-auth": "^4.24.7",
"next-runtime-env": "^3.2.2",
"particles.js": "^2.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-intersection-observer": "^9.13.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/facepaint": "^1.2.5",
"@types/styled-components": "^5.1.34",
"eslint": "^9.8.0",
"husky": "^9.1.3",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsx": "^4.16.2",
"typescript": "^5.5.4"
}
}