-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 3.34 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "palmares",
"version": "0.0.0",
"description": "The palmares framework, a framework to write simple, fast and reliable node.js code on the server",
"workspaces": [
"packages/*",
"bin",
"libs/*",
"docs/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/palmaresHQ/palmares.git"
},
"keywords": [
"palmares",
"framework"
],
"type": "module",
"scripts": {
"lint": "eslint . --ignore-pattern .gitignore",
"define:change": "pnpm changeset",
"release:apply": "pnpm changeset version --filter @palmares/* --filter=palmares",
"release:publish": "pnpm changeset publish --filter @palmares/* --filter=palmares",
"release:github": "tsx scripts/release/index.ts",
"release": "pnpm run copy:templates && pnpm run build && pnpm run release:apply && pnpm run release:publish && pnpm run release:github",
"docs:dev": "cd docs && pnpm run docs:dev",
"publish": "turbo run publish",
"build": "turbo run build",
"build:watch": "turbo run build:watch --concurrency 20",
"build:watch:tests": "turbo run build:watch --filter=@palmares/core --filter=@palmares/tests --filter=@palmares/jest-tests",
"build:watch:schemas": "turbo run build:watch --filter=@palmares/core --filter=@palmares/schemas --filter=@palmares/zod-schema",
"build:watch:databases": "turbo run build:watch --filter=@palmares/core --filter=@palmares/databases --filter=@palmares/sequelize-engine --filter=@palmares/drizzle-engine",
"build:watch:databases:sequelize": "turbo run build:watch --filter=@palmares/core --filter=@palmares/databases --filter=@palmares/sequelize-engine",
"build:watch:databases:drizzle": "turbo run build:watch --filter=@palmares/core --filter=@palmares/databases --filter=@palmares/drizzle-engine",
"build:watch:server": "turbo run build:watch --filter=@palmares/core --filter=@palmares/server --filter=@palmares/express-adapter",
"copy:templates": "turbo run copy:templates ",
"dev": "turbo run dev --parallel",
"examples:server-express-only": "turbo run dev --parallel --filter=@examples/server-express-only --filter=@palmares/*",
"examples:deel-hometask-challenge": "turbo run dev --parallel --filter=@examples/deel-hometask-challenge --filter=@palmares/*",
"setup": "bash ./scripts/setup.sh",
"debug": "eslint --debug .eslintrc.js"
},
"author": "Nicolas Melo",
"license": "MIT",
"bugs": {
"url": "https://github.com/palmaresHQ/palmares/issues"
},
"packageManager": "[email protected]",
"homepage": "https://github.com/palmaresHQ/palmares#readme",
"devDependencies": {
"@arktype/attest": "^0.27.0",
"@changesets/cli": "^2.27.9",
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-file-progress": "^1.5.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-x": "^3.1.0",
"eslint-plugin-n": "^17.10.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^3.0.1",
"globals": "^15.12.0",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"tsx": "^4.19.2",
"turbo": "^2.0.9",
"typescript": "^5.5.4",
"typescript-eslint": "^7.17.0"
}
}