forked from eosdac/eosdac-api
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 2.25 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
{
"name": "aw-api-dao",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"api:dev": "tsc-watch --onSuccess \"node -r dotenv/config -r newrelic -r ts-node/register -r tsconfig-paths/register src/index.ts\"",
"api:prod": "cross-env NEW_RELIC_NO_CONFIG_FILE=true node -r newrelic -r ts-node/register -r tsconfig-paths/register dist/src/index.js",
"test:unit": "jest --config=jest.config.unit.ts",
"test:api": "jest --config=jest.config.api.ts --forceExit --runInBand",
"clean": "rm -rf ./dist",
"build": "yarn clean && tsc",
"docs:generate": "p2o ./postman/collections/aw-api-dao.postman_collection.json -f ./docs/aw-api-dao-oas.yaml -o ./docs/config-oas.json",
"lint": "eslint \"src/**/*\" \"tests/**/*\"",
"lint:fix": "eslint --fix \"src/**/*\" \"tests/**/*\"",
"prettier:check": "yarn prettier --check \"src/**/*\" \"tests/**/*\"",
"prettier:fix": "yarn prettier --write \"src/**/*\" \"tests/**/*\"",
"format": "yarn prettier:fix && yarn lint:fix"
},
"dependencies": {
"@alien-worlds/aw-antelope": "^0.0.45",
"@alien-worlds/aw-contract-alien-worlds": "^0.0.28",
"@alien-worlds/aw-contract-dao-worlds": "^0.0.39",
"@alien-worlds/aw-contract-index-worlds": "^0.0.33",
"@alien-worlds/aw-contract-stkvt-worlds": "^0.0.27",
"@alien-worlds/aw-contract-token-worlds": "^0.0.36",
"@fastify/swagger": "6.1.1",
"@shelf/winston-datadog-logs-transport": "^1.0.7",
"ajv": "^8.12.0",
"change-case": "^4.1.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.2",
"envalid": "^7.3.1",
"fastify": "^3.25.0",
"fastify-cors": "^6.0.2",
"newrelic": "^10.1.0",
"node-fetch": "2.6.11",
"postman-to-openapi": "^3.0.1",
"reflect-metadata": "^0.1.13",
"ts-mockito": "^2.6.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/jest": "^27.4.5",
"@types/newrelic": "^9.13.0",
"@types/node": "^18.7.15",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"jest": "27.4.5",
"prettier": "^2.7.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.9.1",
"tsc-watch": "^5.0.3",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.3"
}
}