-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
72 lines (72 loc) · 1.71 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"author": "Evan Tahler <evan@delicioushat.com>",
"name": "ah-sequelize-plugin",
"license": "Apache-2.0",
"description": "Use Sequelize in ActionHero",
"version": "5.1.5",
"homepage": "http://actionherojs.com",
"repository": {
"type": "git",
"url": "git://github.com/actionhero/ah-sequelize-plugin.git"
},
"keywords": [
"actionhero",
"ah",
"sequelize",
"database",
"db",
"api",
"mysql",
"postgres"
],
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"umzug": "v3.4.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.5",
"@types/node": "^22.0.2",
"@types/uuid": "^9.0.4",
"@types/validator": "^13.11.2",
"actionhero": "^29.0.3",
"bcrypt": "^5.1.1",
"jest": "^29.7.0",
"pg": "^8.11.3",
"prettier": "^3.0.3",
"reflect-metadata": "^0.2.1",
"sequelize": "^6.33.0",
"sequelize-typescript": "^2.1.5",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"type-fest": "^4.3.3",
"typescript": "^5.2.2",
"ws": "^8.14.2"
},
"peerDependencies": {
"actionhero": ">=22.0.0",
"sequelize": ">=6.4.0",
"sequelize-typescript": ">=2.0.0"
},
"scripts": {
"dev": "ts-node-dev --transpile-only src/server.ts",
"start": "node dist/server.js",
"test": "jest",
"pretest": "npm run lint && npm run build",
"prepare": "npm run build",
"build": "rm -rf dist && ./node_modules/.bin/tsc --declaration",
"lint": "prettier --check src __tests__"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/__tests__/testPlugin",
"<rootDir>/__tests__/utils"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
}
}
}