-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "stellar-federation-service",
"version": "0.0.1",
"description": "",
"main": "src/index.ts",
"scripts": {
"predev:docker": "npm install",
"dev:docker": "npm run dev",
"dev": "nodemon --watch src --ext ts,js,json --exec \"ts-node .\"",
"test": "nodemon --watch test --ext ts,js,json --exec \"mocha -r ts-node/register test/**/test.ts \""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/request-promise-native": "^1.0.15",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.5",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.3"
},
"dependencies": {
"@rabbotio/noconsole": "^1.1.0",
"@types/express": "^4.16.0",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"pg": "^7.6.0",
"reflect-metadata": "^0.1.12",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"sequelize": "^4.41.0",
"sequelize-typescript": "^0.6.6",
"stellar-base": "^0.9.0"
}
}