-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"author": "evan <[email protected]>",
"name": "actionhero_tutorial",
"description": "actionhero tutorial project",
"version": "0.1.0",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"actionhero": "^v29.3.2",
"bcrypt": "^5.1.1",
"ioredis": "^5.4.2",
"winston": "^3.17.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.3",
"axios": "^1.7.9",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.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"
}
}
}