-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.21 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
73
74
75
76
77
{
"name": "near-rest-server",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "npm run tsc",
"tsc": "tsc --project tsconfig.compile.json",
"tsc:w": "tsc --project tsconfig.json -w",
"start": "tsnd --inspect --ignore-watch node_modules --respawn --transpile-only -r tsconfig-paths/register src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^10.1.1",
"@tsed/ajv": "^6.73.8",
"@tsed/common": "^6.73.8",
"@tsed/core": "^6.73.8",
"@tsed/di": "^6.73.8",
"@tsed/exceptions": "^6.73.8",
"@tsed/json-mapper": "^6.73.8",
"@tsed/platform-koa": "^6.73.8",
"@tsed/schema": "^6.73.8",
"@tsed/swagger": "^6.73.8",
"ajv": "^8.6.3",
"bn.js": "^5.2.0",
"config": "^3.3.6",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"koa": "^2.13.3",
"koa-bodyparser": "^4.3.0",
"koa-compress": "^5.1.0",
"koa-override": "^3.0.0",
"koa-qs": "^3.0.0",
"lodash": "^4.17.21",
"near-api-js": "^0.43.1",
"near-units": "^0.1.9"
},
"devDependencies": {
"@tsed/cli-plugin-eslint": "3.11.8",
"@types/bn.js": "^5.1.0",
"@types/config": "0.0.39",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.3",
"@types/koa-compress": "^4.0.3",
"@types/koa-json": "^2.0.20",
"@types/koa-send": "^4.1.3",
"@types/koa__cors": "^3.0.3",
"@types/koa__router": "^8.0.8",
"@types/lodash": "^4.14.175",
"@types/multer": "^1.4.7",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.0",
"prettier": "^2.4.1",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.3"
},
"tsed": {
"packageManager": "npm",
"convention": "default"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
}
}