-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "ts-ledger",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json",
"compile": "tsc",
"build": "npm-run-all clean lint compile",
"server": "node .",
"worker": "node dist/worker.js",
"ecosystem": "./node_modules/.bin/pm2-runtime ecosystem.config.js",
"prestart": "npm run build",
"start": "npm run ecosystem",
"dev": "nodemon --watch src -e ts,js --exec npm run start",
"db:migrate": "node database",
"test": "./node_modules/.bin/mocha --require ts-node/register src/tests.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bignumber.js": "^9.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jayson": "^3.2.0",
"pg": "^8.0.0",
"request": "^2.88.2",
"sequelize": "^5.21.5",
"sqlite3": "^4.1.1",
"uuid": "^7.0.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.3",
"@types/mocha": "^7.0.2",
"@types/request": "^2.48.4",
"@types/sinon": "^7.5.2",
"@types/uuid": "^7.0.2",
"@types/validator": "^12.0.1",
"@types/ws": "^7.2.3",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"pm2": "^4.2.3",
"rimraf": "^3.0.2",
"sinon": "^9.0.1",
"ts-node": "^8.8.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3",
"umzug": "^2.3.0",
"yargs": "^15.3.1"
}
}