-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.78 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
{
"name": "dex-backend",
"version": "1.0.0",
"description": "backend service for handling order-book based dex functionality",
"main": ".eslintrc.js",
"scripts": {
"test": "jest -i --passWithNoTests",
"start": "node ./dist/app.js",
"nodemon": "yarn && yarn build && yarn migrate && nodemon",
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"migrate": "npx sequelize-cli db:migrate",
"migrate::undo": "npx sequelize-cli db:migrate:undo:all",
"migrate::redo": "npx sequelize-cli db:migrate:undo:all; npx sequelize-cli db:migrate",
"run": "yarn && yarn build && yarn migrate && yarn start"
},
"dependencies": {
"axios": "^0.26.0",
"bignumber.js": "^9.0.2",
"convict": "^6.2.1",
"dotenv": "^15.0.0",
"express": "^4.17.1",
"node-cache": "^5.1.2",
"node-cron": "^3.0.0",
"sequelize": "^6.16.2",
"sequelize-cli": "^6.4.1",
"typescript": "^4.5.5",
"user-agents": "^1.0.940",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.17",
"@types/node-cron": "^3.0.1",
"@types/user-agents": "^1.0.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.4.7",
"nodemon": "^2.0.13",
"ts-jest": "^27.1.3",
"ts-node": "^10.2.1"
}
}