-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.51 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
"@types/nodemailer": "^6.4.17",
"jest": "^29.7.0",
"prisma": "^6.4.1",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
},
"name": "05-noc",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"@prisma/client": "^6.4.1",
"acorn": "^8.14.0",
"acorn-walk": "^8.3.4",
"ansi-regex": "^6.1.0",
"ansi-styles": "^6.2.1",
"anymatch": "^3.1.3",
"arg": "^4.1.3",
"balanced-match": "^1.0.2",
"binary-extensions": "^2.3.0",
"brace-expansion": "^2.0.1",
"braces": "^3.0.3",
"buffer-from": "^1.1.2",
"chokidar": "^3.6.0",
"color-convert": "^2.0.1",
"color-name": "^1.1.4",
"concat-map": "^0.0.1",
"create-require": "^1.1.1",
"cron": "^3.5.0",
"cross-spawn": "^7.0.6",
"debug": "^4.4.0",
"diff": "^4.0.2",
"dotenv": "^16.4.7",
"dynamic-dedupe": "^0.3.0",
"eastasianwidth": "^0.2.0",
"emoji-regex": "^9.2.2",
"env-var": "^7.5.0",
"fill-range": "^7.1.1",
"foreground-child": "^3.3.0",
"fs.realpath": "^1.0.0",
"function-bind": "^1.1.2",
"glob": "^11.0.1",
"glob-parent": "^5.1.2",
"has-flag": "^3.0.0",
"hasown": "^2.0.2",
"ignore-by-default": "^1.0.1",
"inflight": "^1.0.6",
"inherits": "^2.0.4",
"is-binary-path": "^2.1.0",
"is-core-module": "^2.16.1",
"is-extglob": "^2.1.1",
"is-fullwidth-code-point": "^3.0.0",
"is-glob": "^4.0.3",
"is-number": "^7.0.0",
"isexe": "^2.0.0",
"jackspeak": "^4.0.3",
"lru-cache": "^11.0.2",
"make-error": "^1.3.6",
"minimatch": "^10.0.1",
"minimist": "^1.2.8",
"minipass": "^7.1.2",
"mkdirp": "^1.0.4",
"mongoose": "^8.10.1",
"ms": "^2.1.3",
"nodemailer": "^6.10.0",
"normalize-path": "^3.0.0",
"once": "^1.4.0",
"package-json-from-dist": "^1.0.1",
"path-is-absolute": "^1.0.1",
"path-key": "^3.1.1",
"path-parse": "^1.0.7",
"path-scurry": "^2.0.0",
"picomatch": "^2.3.1",
"pstree.remy": "^1.1.8",
"readdirp": "^3.6.0",
"resolve": "^1.22.10",
"semver": "^7.7.1",
"shebang-command": "^2.0.0",
"shebang-regex": "^3.0.0",
"signal-exit": "^4.1.0",
"simple-update-notifier": "^2.0.0",
"source-map": "^0.6.1",
"source-map-support": "^0.5.21",
"string-width": "^5.1.2",
"string-width-cjs": "^4.2.3",
"strip-ansi": "^7.1.0",
"strip-ansi-cjs": "^6.0.1",
"strip-bom": "^3.0.0",
"strip-json-comments": "^2.0.1",
"supports-color": "^5.5.0",
"supports-preserve-symlinks-flag": "^1.0.0",
"to-regex-range": "^5.0.1",
"touch": "^3.1.1",
"tree-kill": "^1.2.2",
"tsconfig": "^7.0.0",
"undefsafe": "^2.0.5",
"undici-types": "^6.20.0",
"v8-compile-cache-lib": "^3.0.1",
"which": "^2.0.2",
"wrap-ansi": "^8.1.0",
"wrap-ansi-cjs": "^7.0.0",
"wrappy": "^1.0.2",
"xtend": "^4.0.2",
"yn": "^3.1.1"
},
"scripts": {
"dev": "tsnd --respawn --clear src/app.ts",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/app.js",
"docker:test": "docker compose -f docker-compose.test.yml --env-file .env.test up -d",
"test": "npm run docker:test && jest",
"test:watch": "npm run docker:test && jest --watch",
"test:coverage": "npm run docker:test && jest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}