-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.04 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
{
"author": "YOU <YOU@example.com>",
"name": "my_actionhero_project",
"description": "my actionhero project",
"version": "0.1.0",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"actionhero": "29.0.3",
"ah-resque-ui": "^3.0.1",
"ioredis": "^5.3.2",
"winston": "^3.11.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "^20.10.2",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
},
"scripts": {
"postinstall": "npm run build",
"dev": "ts-node-dev --no-deps --transpile-only ./src/server.ts",
"start": "node ./dist/server.js",
"actionhero": "actionhero",
"test": "jest",
"pretest": "npm run build && npm run lint",
"build": "tsc --declaration",
"lint": "prettier --check src/*/** __tests__/*/**",
"pretty": "prettier --write src/*/** __tests__/*/**"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.ts?$": "ts-jest"
}
}
}