-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.14 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.14 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@deepracticex/nodespec",
"version": "0.0.0",
"description": "DeepracticeNodeSpec - AI-friendly Node.js development ecosystem with standardized configs, tools, and packages",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"test": "turbo test",
"test:e2e": "turbo test",
"test:dev": "turbo test:dev",
"test:ci": "turbo test:ci",
"lint": "turbo lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "turbo clean && rm -rf node_modules",
"typecheck": "turbo typecheck",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish",
"prepare": "lefthook install"
},
"keywords": [
"nodespec",
"ai-development",
"node-standards",
"typescript",
"monorepo",
"config",
"deepractice"
],
"author": "Deepractice",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Deepractice/NodeSpec"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@10.15.1",
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^19.8.1",
"@cucumber/cucumber": "^11.1.0",
"@cucumber/pretty-formatter": "^1.0.1",
"@deepracticex/config-preset": "workspace:*",
"@faker-js/faker": "^9.4.0",
"@types/chai": "^5.0.1",
"@types/express": "^5.0.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.6",
"@types/prompts": "^2.4.9",
"chai": "^5.1.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"execa": "^9.5.2",
"fs-extra": "^11.2.0",
"hono": "^4.7.10",
"lefthook": "^1.13.6",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.9",
"prettier": "^3.6.2",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.0",
"tsx": "^4.20.6",
"turbo": "^2.5.8",
"type-fest": "^4.30.0",
"typescript": "^5.9.3",
"vitest": "^2.0.0",
"zod": "^3.24.1"
},
"dependencies": {
"yaml": "^2.8.1"
}
}