-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "@typegoose/verify-typegoose-issues",
"version": "0.0.1",
"description": "Bootstrap TS Project All Files needed for TS",
"main": "lib/app.js",
"engines": {
"node": ">=16.20.1"
},
"files": [
"lib/*.js",
"lib/*.d.ts"
],
"scripts": {
"run:directly": "ts-node ./src/test.ts",
"run": "npm run build && node lib/test.js",
"watch": "tsc -w",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint -c ./eslint.config.mjs \"./**/*.{js,ts,cjs,mjs,cts,mts}\"",
"doc": "typedoc --out ./doc ./src --mode modules",
"clean": "rm -rf ./doc ./lib ./coverage ./nyc_output"
},
"repository": "none",
"author": "hasezoey",
"license": "MIT",
"devDependencies": {
"@types/node": "~24.10.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.7.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0"
},
"dependencies": {
"@typegoose/auto-increment": "^5.0.1",
"@typegoose/typegoose": "13.2.0",
"mongoose": "9.2.3"
}
}