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
/
Copy pathpackage.json
95 lines (95 loc) · 2.5 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "marketplace-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/kinfoundation/marketplace-server"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/csv-parse": "^1.1.11",
"@types/expect": "^1.20.3",
"@types/jest": "^22.1.3",
"@types/moment": "^2.13.0",
"@types/redis": "^2.8.6",
"@types/redis-mock": "^0.17.0",
"@types/stellar-sdk": "^0.8.1",
"@types/supertest": "^2.0.4",
"axios": "^0.18.0",
"axios-retry": "^3.1.1",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"csv-parse": "^4.4.6",
"express": "^4.16.2",
"express-async-errors": "^2.1.2",
"express-bearer-token": "^2.1.1",
"hot-shots": "^5.9.2",
"jest": "^22.4.2",
"jsonwebtoken": "^8.1.1",
"moment": "^2.20.1",
"npm": "^6.13.4",
"pg": "7.4.3",
"pg-hstore": "2.3.2",
"redis": "^2.8.0",
"redis-mock": "^0.21.0",
"redlock": "^3.1.2",
"reflect-metadata": "^0.1.12",
"source-map-support": "^0.5.4",
"stellar-sdk": "^0.8.0",
"supertest": "^3.0.0",
"to": "^0.2.9",
"ts-jest": "^22.0.4",
"typeorm": "^0.1.12",
"update": "^0.7.4",
"uuid": "^3.2.1",
"uuid4": "^1.0.0",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/express": "^4.11.0",
"@types/jsonwebtoken": "^7.2.5",
"@types/redlock": "^3.0.1",
"@types/sequelize": "^4.27.4",
"@types/winston": "^2.3.7",
"npm-run-all": "^4.0.1",
"rimraf": "2.6.1",
"sqlite3": "^3.1.13",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.7.2"
},
"scripts": {
"clean": "rimraf scripts/bin",
"transpile": "tsc -p scripts",
"lint": "./node_modules/.bin/tslint -p ./scripts",
"build": "npm-run-all clean lint transpile",
"start": "node scripts/bin/public/index",
"start-internal": "node scripts/bin/internal/index",
"create-db": "node scripts/bin/create",
"restart": "npm-run-all build start",
"transpile-tests": "tsc -p tests",
"test-system": "node scripts/bin/mock_client",
"test": "jest --forceExit --runInBand"
},
"author": "",
"license": "ISC",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/tests/preprocessor.js"
},
"testMatch": [
"**/tests/src/**.(spec.ts)"
],
"setupFiles": [
"./tests/src/init_tests.js"
]
}
}