-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "tender",
"version": "0.1.1",
"description": "",
"main": "src/app.ts",
"scripts": {
"build": "tsc",
"start": "ts-node src/app.ts",
"lint": "eslint ./src/**/*.ts && prettier -c ./src/**/*.ts",
"dev": "concurrently \"tsc -w\" \"nodemon dist/app.js\"",
"test": "jest"
},
"keywords": [],
"author": "therne",
"license": "MIT",
"private": true,
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^27.4.0",
"@types/koa": "^2.13.4",
"@types/koa-json": "^2.0.20",
"@types/koa-logger": "^3.1.2",
"@types/koa-router": "^7.4.4",
"@types/koa__cors": "^3.1.1",
"@types/node": "^17.0.14",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"concurrently": "^7.0.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@pinata/sdk": "^1.1.23",
"koa": "^2.13.4",
"koa-body": "^4.2.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-router": "^10.1.1",
"node-fetch": "2.6.7"
}
}