This repository has been archived by the owner on May 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.55 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
{
"name": "friendbot-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf bin & rimraf tests/bin",
"transpile": "tsc -p tsconfig.json",
"lint": "./node_modules/.bin/tslint -p .",
"build": "npm-run-all clean transpile",
"start": "node bin/server.js",
"transpile-tests": "tsc -p tests",
"test": "npm-run-all transpile transpile-tests jest",
"jest": "jest --forceExit --runInBand --detectOpenHandles --coverage"
},
"author": "",
"license": "ISC",
"dependencies": {
"@kinecosystem/kin-sdk-node": "^0.9.3",
"axios": "^0.18.1",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"express-async-errors": "^3.1.1",
"express-http-context": "^1.2.1",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/jest": "^24.0.13",
"@types/winston": "^2.3.7",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typescript": "^3.4.5",
"underscore": "^1.9.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testEnvironment": "node",
"preset": "ts-jest",
"testMatch": [
"**/tests/src/**.ts"
],
"testPathIgnorePatterns": [
".d.ts"
],
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"setupFiles": [
"./tests/jest_setup.ts"
]
}
}