-
Notifications
You must be signed in to change notification settings - Fork 649
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "capsule-render",
"version": "1.0.0",
"description": "🌈 Dynamic Coloful Image Render",
"keywords": [
"capsule-render",
"dynamic-image",
"image-generator"
],
"main": "api/index.js",
"scripts": {
"start": "vercel dev",
"test": "jest",
"prepare": "husky install"
},
"author": "kyechan99",
"license": "MIT",
"bugs": {
"url": "https://github.com/kyechan99/capsule-render/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kyechan99/capsule-render.git"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vercel": "^33.0.0",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"babel-jest": "^29.7.0",
"husky": "^9.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "3.3.3",
"prettier-2": "npm:prettier@^2"
},
"lint-staged": {
"*.{js,json}": [
"prettier --cache --write"
]
}
}