-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.55 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.55 KB
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
{
"name": "solend-plus-api",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"start:dev": "npx tsc && npx nodemon",
"lint": "eslint . --ext .ts",
"clean": "rm -rf dist && mkdir dist",
"build": "npm run clean && npx tsc",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Solend-Plus/solend-plus-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Solend-Plus/solend-plus-api/issues"
},
"homepage": "https://github.com/Solend-Plus/solend-plus-api#readme",
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "2.7.1",
"ts-node": "^10.9.1"
},
"dependencies": {
"@solana/web3.js": "^1.50.1",
"@solendprotocol/solend-sdk": "^0.6.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"lodash": "^4.17.21",
"mongodb": "^4.8.1",
"mongoose": "^6.5.1",
"typescript": "^4.8.4"
},
"engines": {
"node": "16.x"
}
}