-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.7 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
{
"name": "cport",
"version": "0.0.1",
"description": "import/export tool for caisy and other headless cms",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node src/index.ts",
"gen": "rm -rf cport.db && rm -rf ./drizzle && yarn drizzle-kit generate:sqlite",
"build": "tsc",
"prepare": "husky",
"asset": "ts-node src/lib/caisy/asset-files/asset.ts"
},
"keywords": [],
"author": "caisy",
"license": "ISC",
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/figlet": "^1.5.5",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.18",
"@types/pg": "^8.11.6",
"drizzle-kit": "^0.20.14",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"typescript": "^4.9.4"
},
"dependencies": {
"@caisy/rich-text-html-parser": "^0.1.2",
"@caisy/sdk": "^1.3.2",
"@contentful/rich-text-from-markdown": "^15.17.3",
"@contentful/rich-text-html-renderer": "^16.3.5",
"@contentful/rich-text-types": "^16.5.2",
"better-sqlite3": "^9.4.3",
"chalk": "4.1.2",
"cheerio": "^1.0.0-rc.12",
"cli-progress": "^3.12.0",
"commander": "^10.0.0",
"contentful": "^10.1.8",
"contentful-export": "^7.19.138",
"dotenv": "^16.0.3",
"drizzle-orm": "^0.29.5",
"drizzle-zod": "^0.5.1",
"figlet": "^1.6.0",
"inquirer": "^8.0.0",
"js-yaml": "^4.1.0",
"json-stringify-safe": "^5.0.1",
"node-fetch": "2",
"p-limit": "^5.0.0",
"pg": "^8.11.5",
"ts-node": "^10.9.1",
"turndown": "^7.2.0",
"zod": "^3.22.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"volta": {
"node": "18.19.1"
}
}