-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
{
"author": "YOU <YOU@example.com>",
"name": "example-with-custom-env",
"description": "Actionhero example showcasing how to modify the environment at runtime and integrate with the config system",
"version": "0.1.0",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@types/glob": "^8.1.0",
"actionhero": "29.3.2",
"dotenv": "^16.4.5",
"ioredis": "^5.4.1",
"winston": "^3.13.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.0.2",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
},
"scripts": {
"postinstall": "npm run build",
"dev": "ts-node-dev --no-deps --transpile-only ./src/server",
"debug": "tsc && ts-node-dev --transpile-only --no-deps --inspect -- ./src/server ",
"start": "node ./dist/server.js",
"test": "jest",
"pretest": "npm run build && npm run lint",
"build": "tsc --sourceMap false --declaration",
"lint": "prettier --check src/*/** __tests__/*/**",
"pretty": "prettier --write src/*/** __tests__/*/**"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts?$": "ts-jest"
}
}
}