-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.63 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": "zerone",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"commit": "git-cz",
"build": "ts-node -r tsconfig-paths/register ./packages/cli/src/bin.ts build -d --no-watch",
"lint": "eslint --fix --ext .ts,.js packages",
"test": "jest",
"test:cov": "jest --coverage",
"preinstall": "npx only-allow pnpm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeronejs/zerone.git"
},
"homepage": "https://zerone.top/",
"keywords": [
"zerone"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@stylistic/eslint-plugin": "^2.12.1",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.59.11",
"@vitest/eslint-plugin": "^1.1.20",
"axios": "^1.7.7",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.2",
"git-cz": "^4.9.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"sqlite3": "^5.1.6",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typeorm": "^0.3.16",
"typescript": "^5.1.3"
},
"dependencies": {
"@nestjs/common": "^9.4.3",
"@nestjs/core": "^9.4.3",
"@nestjs/testing": "^9.4.3",
"@nestjs/typeorm": "^10.0.0",
"@zeronejs/ast-ts": "workspace:*",
"@zeronejs/utils": "workspace:*",
"path-to-regexp": "^8.2.0"
}
}