-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
{
"version": "1.0.0",
"license": "UNLICENSED",
"name": "simple-api",
"main": "build/index.js",
"private": true,
"files": [
"build"
],
"engines": {
"node": "16.x",
"yarn": "1.x"
},
"scripts": {
"build": "tsc --build",
"start": "ts-node-dev src/index.ts",
"lint": "eslint --ext .js,.ts src/",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"test": "TZ=utc NODE_ENV=test PORT=9998 jest",
"test:watch": "yarn test --watch"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@types/koa-json": "^2.0.20",
"@types/koa-pino-logger": "3.0.0",
"@types/koa-router": "^7.4.4",
"@types/lodash": "4.14.176",
"@types/node": "16.11.6",
"@typescript-eslint/eslint-plugin": "4.31.2",
"@typescript-eslint/parser": "4.31.2",
"autoprefixer": "10.2.5",
"concurrently": "6.3.0",
"dotenv": "8.2.0",
"eslint": "7.32.0",
"eslint-config-prettier": "7.2.0",
"eslint-import-resolver-configurable": "0.1.3",
"eslint-import-resolver-node": "0.3.6",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-unicorn": "27.0.0",
"jest": "^27.3.1",
"koa-json": "^2.0.2",
"nodemon": "2.0.14",
"pino-pretty": "7.0.1",
"prettier": "2.4.1",
"reflect-metadata": "0.1.13",
"ts-jest": "^27.0.7",
"ts-node-dev": "^1.1.8",
"tslib": "^2.1.0",
"typescript": "4.3.5"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"koa": "2.13.4",
"koa-body": "^4.2.0",
"koa-helmet": "^6.1.0",
"koa-pino-logger": "3.0.0",
"koa-router": "10.1.1",
"lodash": "4.17.21",
"ts-results": "3.0.0",
"tsconfig-paths": "3.9.0"
}
}