-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1015 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1015 Bytes
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
{
"name": "podverse-qa",
"version": "5.1.18-develop",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build:watch": "nodemon --watch 'src' --delay 500ms -x \"npm run build\"",
"build": "tsc",
"lint": "eslint ./src --ext .ts",
"start": "ts-node ./dist/index.js",
"faker": "ts-node ./src/faker/index.ts"
},
"author": "",
"license": "AGPLv3",
"dependencies": {
"@faker-js/faker": "^10.0.0",
"module-alias": "^2.2.3",
"podverse-external-services": "^5.0.3",
"podverse-helpers": "^5.1.0",
"podverse-orm": "^5.0.5",
"podverse-parser": "^5.0.9"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.49.0",
"@eslint/config-array": "^0.21.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@types/node": "^24.4.0",
"eslint": "^9.35.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0"
}
}