-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "getkap.co",
"version": "2.0.0",
"description": "The source for getkap.co",
"type": "module",
"main": " ",
"scripts": {
"dev": "next",
"build": "next build",
"start": "NODE_ENV=production next start",
"test": "echo \"No test specified\" && exit 0",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --no-semi --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wulkano/getkap.co.git"
},
"author": "github.com/Wulkano",
"license": "MIT",
"bugs": {
"url": "https://github.com/wulkano/getkap.co/issues"
},
"homepage": "https://getkap.co",
"dependencies": {
"@radix-ui/react-popover": "^1.0.7",
"@vercel/analytics": "^1.1.2",
"eightpoint": "^0.0.1",
"eslint-config-next": "^14.0.4",
"got": "^14.0.0",
"next": "^14.0.4",
"prop-types": "^15.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dom-confetti": "^0.2.0",
"react-ga": "^3.3.0"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"husky": "^9.0.6",
"lint-staged": "^15.2.0",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
}
}