-
Notifications
You must be signed in to change notification settings - Fork 366
/
package.json
44 lines (44 loc) · 1.48 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
{
"version": "1.5.7",
"name": "workspace",
"workspaces": [
"packages/web",
"packages/web-data",
"packages/node"
],
"bin": {
"changelog-create": "./scripts/changelog/changelog-create.mjs",
"changelog-generate": "./scripts/changelog/changelog-generate.mjs"
},
"files": [],
"scripts": {
"start": "npm run watch",
"watch": "concurrently \"npm run watch --prefix packages/web\" \"npm run watch --prefix packages/node\"",
"build": "npm run build --workspaces --if-present",
"lint:fix": "npx prettier -c -w --ignore-unknown .",
"lint:check": "npx prettier -c --ignore-unknown .",
"publish:latest": "npm run publish:latest --workspaces --if-present && npm run deploy-assets",
"publish:next": "npm run publish:next --workspaces --if-present && npm run deploy-assets",
"package:version": "node ./scripts/package-version.mjs",
"deploy-assets": "node -r dotenv/config ./scripts/deploy-assets.mjs",
"tag": "git tag $npm_package_version & git push origin $npm_package_version",
"package:pack": "npm run package:pack --workspaces --if-present",
"prepare": "husky"
},
"devDependencies": {
"chalk": "~5.3.0",
"concurrently": "~8.2.2",
"dotenv": "~16.3.1",
"ejs": "~3.1.9",
"es-main": "~1.3.0",
"esbuild": "^0.21.1",
"glob": "~10.3.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"meow": "~13.0.0",
"moment": "~2.29.4",
"onchange": "~7.1.0",
"prettier": "^3.2.5",
"yaml": "~2.3.4"
}
}