-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.11 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.11 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
60
61
62
63
64
65
66
67
68
{
"name": "defios-node-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "NODE_ENV=development nodemon build/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@noble/ed25519": "^1.7.1",
"@project-serum/anchor": "^0.25.0",
"@project-serum/borsh": "^0.2.5",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.66.2",
"axios": "^1.4.0",
"bs58": "^5.0.0",
"config": "^3.3.9",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"find-config": "^1.0.0",
"fs": "^0.0.1-security",
"fs-promise": "^2.0.3",
"luxon": "^3.3.0",
"mongodb": "^5.1.0",
"mongoose": "^7.1.0",
"node-fetch": "^2.6.9",
"supercluster": "^7.1.5",
"ts-node": "^10.9.1",
"weaviate-ts-client": "^1.4.0",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/node": "^18.11.5",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"babel-loader": "^8.0.4",
"concurrently": "^8.0.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.8",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"webpack": "^5.82.0",
"webpack-cli": "^5.0.1"
}
}