This repository was archived by the owner on Sep 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.39 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
41
42
43
44
45
46
47
48
49
50
51
{
"author": "YOU <YOU@example.com>",
"name": "my_actionhero_project",
"description": "my actionhero project",
"version": "0.1.0",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@types/bluebird": "^3.5.32",
"@types/validator": "^13.0.0",
"actionhero": "23.0.7",
"ah-sequelize-plugin": "^2.2.2",
"bcrypt": "^5.0.0",
"ioredis": "latest",
"mysql2": "^2.1.0",
"pg": "^8.3.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.22.3",
"sequelize-typescript": "^1.1.0",
"winston": "latest",
"ws": "latest"
},
"devDependencies": {
"@types/node": "latest",
"@types/jest": "latest",
"jest": "latest",
"prettier": "latest",
"ts-jest": "latest",
"ts-node-dev": "latest",
"typescript": "latest"
},
"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",
"actionhero": "actionhero",
"test": "jest --run-in-band",
"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"
}
}
}