-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "yieldscan-backend",
"version": "1.0.0",
"description": "YieldScan Backend",
"main": "src/app.ts",
"scripts": {
"build": "tsc",
"start": "nodemon",
"inspect": "nodemon --inspect src/app.ts",
"test": "jest",
"lint": "npm run lint:js ",
"lint:eslint": "eslint --ignore-path .gitignore --ext .ts",
"lint:js": "npm run lint:eslint src/",
"lint:fix": "npm run lint:js --fix",
"git:commit": "git-cz"
},
"keywords": [
"yieldscan",
"backend",
"polkadot",
"kusama"
],
"dependencies": {
"@polkadot/api": "^1.34.0-beta.12",
"body-parser": "^1.19.0",
"celebrate": "^12.1.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"event-dispatch": "^0.4.1",
"eventemitter3": "^4.0.4",
"express": "^4.17.1",
"lodash": "^4.17.20",
"method-override": "^3.0.0",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"mongoose": "^5.9.21",
"reflect-metadata": "^0.1.13",
"ts-custom-error": "^3.1.1",
"typedi": "^0.8.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.7",
"@types/express": "^4.17.6",
"@types/jest": "^26.0.3",
"@types/lodash": "^4.14.157",
"@types/method-override": "0.0.31",
"@types/mongoose": "^5.7.29",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"git-cz": "^4.7.0",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"homepage": "https://yieldscan.surge.sh"
}