-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "jsgrids",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"export": "next export",
"start": "next start",
"prepare": "husky install"
},
"dependencies": {
"@babel/core": "^7.23.0",
"@chakra-ui/react": "^2.8.1",
"@chakra-ui/styled-system": "^2.9.1",
"@chakra-ui/theme-tools": "^2.1.1",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"debug": "^4.3.4",
"framer-motion": "^10",
"humanize-plus": "^1.8.2",
"js-yaml": "^4.1.0",
"luxon": "^3.4.3",
"next": "^13.5.4",
"p-retry": "^6.1.0",
"p-throttle": "^5.1.0",
"react": "^18",
"react-dom": "^18",
"react-github-corner": "^2.5.0",
"react-icons": "^4.11.0",
"recoil": "^0.7.7",
"runtypes": "^6.7.0"
},
"devDependencies": {
"@types/debug": "^4.1.9",
"@types/humanize-plus": "^1.8.0",
"@types/js-yaml": "^4.0.6",
"@types/luxon": "^3.3.2",
"@types/node": "^20.8.3",
"@types/react": "^18.2.25",
"husky": ">=8",
"lint-staged": ">=14",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}