-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 928 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 928 Bytes
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
{
"name": "salve-monorepo",
"private": true,
"description": "Universal Greeting & Cultural Awareness Engine",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate:packs": "npx ts-node scripts/generate-demo-packs.ts",
"generate:address-packs": "npx ts-node scripts/generate-address-packs.ts",
"generate:nameday-packs": "npx ts-node scripts/generate-nameday-packs.ts",
"harvest": "npm run harvest -w packages/harvester --",
"lint": "prettier --check .",
"format": "prettier --write .",
"deploy": "npm run build -w packages/demo"
},
"workspaces": [
"packages/*"
],
"author": "Wouter Soudan",
"license": "MIT",
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/jest": "^30.0.0",
"ajv": "^8.18.0",
"cheerio": "^1.2.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"ts-jest": "^29.4.6",
"typescript": "^5.0.0"
}
}