-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
71 lines (71 loc) · 1.74 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
{
"name": "@abcxyzmn/indexer",
"version": "0.0.1",
"private": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/**/*",
"./dist/*"
],
"scripts": {
"start": "ts-node src/index.ts",
"cron": "ts-node src/crons/cron.ts",
"migrate": "ts-node src/scripts/migrate.ts",
"playground": "ts-node src/scripts/playground.ts",
"test": "jest"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/supertest": "^2.0.12",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"cron": "^2.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"fs": "^0.0.1-security",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.22",
"pg": "^8.11.0",
"pg-hstore": "^2.3.4",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.32.0",
"sequelize-typescript": "^2.1.5",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tslint": "^6.1.3"
},
"devDependencies": {
"@types/cron": "^2.0.1",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/hapi__joi": "^17.1.9",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.1.4",
"fs-extra": "^9.0.1",
"husky": ">=4",
"jest": "^29.5.0",
"lint-staged": ">=10",
"minimist": "^1.2.5",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.60",
"sequelize-cli": "^6.6.1",
"system-commands": "^1.1.7",
"ts-generator": "^0.1.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md,sol}": "prettier --write"
}
}