-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.67 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.67 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"private": true,
"version": "0.3.1",
"scripts": {
"build": "set NODE_ENV=production&& npx webpack --config webpack.config.js",
"lint": "eslint . --ext .ts --fix",
"test": "jest -c jest.unit.js"
},
"main": "dist/index.js",
"license": "Apache-2.0",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)"
],
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json",
"diagnostics": false
}
},
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"husky": {
"hooks": {
"pre-commit": "git-format-staged -f 'prettier --ignore-unknown --stdin --stdin-filepath \"{}\"' . && eslint . --ext .ts"
}
},
"devDependencies": {
"@types/convert-source-map": "^1.5.1",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.25",
"@types/koa": "^2.11.3",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.1",
"@types/lodash.isempty": "^4.4.6",
"@types/node": "^13.1.4",
"@types/ramda": "0.27.34",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^4.14.2",
"awesome-typescript-loader": "^5.2.1",
"eslint": "^7.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-drill4j": "0.0.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.4",
"git-format-staged": "^2.1.0",
"husky": "^7.0.4",
"jest": "^24.9.0",
"jest-each": "^26.4.2",
"jest-extended": "^0.11.5",
"js-flock": "^3.14.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"ts-jest": "^24.3.0",
"ts-loader": "^8.0.4",
"ts-node": "^8.6.2",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^3.7.4",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2",
"webpack-strip-block": "^0.3.0"
},
"description": "",
"dependencies": {
"@koa/cors": "^3.1.0",
"@types/koa__cors": "^3.0.1",
"axios": "^0.19.2",
"chalk": "^4.1.0",
"cli-table3": "^0.6.0",
"convert-source-map": "^1.7.0",
"debug": "^4.1.1",
"fs-extra": "^8.1.0",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-router": "^9.1.0",
"lodash.isempty": "^4.4.0",
"mongodb": "^3.5.9",
"nanoid": "^3.1.20",
"ramda": "^0.27.1",
"source-map": "^0.7.3",
"supports-color": "^7.1.0",
"upath": "^1.2.0",
"ws": "^7.3.0"
},
"author": ""
}