-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) 路 1.98 KB
/
package.json
File metadata and controls
62 lines (62 loc) 路 1.98 KB
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": "hyperstack-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"examples/*",
"packages/*",
"packages/create-hyperstack/template-app",
"packages/create-hyperstack/template-blank"
],
"packageManager": "pnpm@7.5.0",
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"scripts": {
"clean": "pnpm -r clean",
"build": "pnpm -r build",
"publish-quick": "pnpm changeset version && pnpm kill-changelog && pnpm changeset publish",
"kill-changelog": "pnpm rimraf packages/**/CHANGELOG.md packages/create-hyperstack/template-app/CHANGELOG.md",
"build:dev": "pnpm build && pnpm --parallel build:dev",
"test": "pnpm -r test --workspace-concurrency=1",
"test:ci:core": "FORCE_COLOR=1 pnpm -r test:ci:core --workspace-concurrency=1",
"test:ci:apps": "FORCE_COLOR=1 pnpm -r test:ci:apps --workspace-concurrency=1",
"lint": "pnpm lint --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@changesets/cli": "^2.24.2",
"@hyperstackjs/typings": "*",
"@types/body-parser": "^1.19.2",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/debug": "^4.1.7",
"@types/email-templates": "^8.0.4",
"@types/express": "^4.17.13",
"@types/express-pino-logger": "^4.0.3",
"@types/glob": "^7.2.0",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.6",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/nodemailer": "^6.4.4",
"@types/permit": "^0.2.2",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@types/yargs": "^17.0.10",
"concurrently": "^7.2.1",
"eslint": "^8.17.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.7.0",
"pino": "^8.0.0",
"pino-http": "^7.1.0",
"prettier": "^2.7.0",
"rimraf": "^3.0.2",
"stylomatic": "0.4.9",
"testcontainers": "^8.10.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"typescript-cp": "^0.1.9"
}
}