-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
{
"name": "stock-monitor",
"version": "1.0.0",
"description": "Stock Monitor",
"main": "index.js",
"author": "Yevhen Kyriukha",
"private": true,
"license": "MIT",
"scripts": {
"migrate-and-start": "npm run migrate && npm start",
"start": "node dist/index.js",
"start-dev": "node --nolazy -r ts-node/register src/index.ts",
"build": "npx tsc",
"migrate": "node $(npm bin)/knex --knexfile db/knexfile.js migrate:latest",
"new-migration": "node $(npm bin)/knex --knexfile db/knexfile.js migrate:make",
"rollback": "node $(npm bin)/knex --knexfile db/knexfile.js migrate:rollback"
},
"dependencies": {
"@hapi/joi": "latest",
"axios": "^0.19.0",
"binary-parser": "^1.4.0",
"cap-decoders": "^0.2.0",
"cors": "^2.8.5",
"dayjs": "^1.8.14",
"dotenv": "^8.0.0",
"env-var": "^5.0.0",
"express": "4.17.1",
"express-joi-validation": "latest",
"express-ws": "^4.0.0",
"faker": "^4.1.0",
"joi-extract-type": "^15.0.0",
"knex": "^0.19.5",
"lockfile": "^1.0.4",
"pcap-ng-parser": "^1.0.0",
"pg": "^7.11.0",
"progress-stream": "^2.0.0",
"socket.io-client": "^2.2.0",
"uuid": "^3.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/binary-parser": "^1.3.1",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express": "4.17.0",
"@types/express-ws": "^3.0.0",
"@types/faker": "^4.1.5",
"@types/lockfile": "^1.0.1",
"@types/node": "^12.0.10",
"@types/socket.io-client": "^1.4.32",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1",
"tsutils": "^3.14.0",
"typescript": "3.5.2"
}
}