-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
67 lines (67 loc) · 2.03 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
66
67
{
"name": "onboarding-server",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "nodemon -r dotenv/config --exec babel-node ./src/server.js",
"build": "babel src --out-dir build --copy-files",
"start": "node build/server.js",
"clean": "rimraf build",
"db:create": "npx sequelize-cli db:create",
"db:migrate": "npx sequelize-cli db:migrate",
"db:migrate:undo": "npx sequelize-cli db:migrate:undo",
"task": "DISABLE_DB_LOGGING=true node -r dotenv/config"
},
"dependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@fnando/keyring": "^0.4.0",
"@helium/account-fetch-cache": "^0.8.7",
"@helium/address": "^4.12.0",
"@helium/crypto": "^4.12.0",
"@helium/helium-entity-manager-sdk": "^0.8.7",
"@helium/helium-sub-daos-sdk": "^0.8.7",
"@helium/http": "^4.12.0",
"@helium/spl-utils": "^0.8.7",
"@helium/transactions": "^4.12.0",
"@metaplex-foundation/mpl-bubblegum": "^0.7.0",
"@noble/ed25519": "^2.1.0",
"@project-serum/anchor": "^0.25.0",
"@solana/spl-account-compression": "^0.1.5",
"@solana/web3.js": "^1.87.6",
"aws-sdk": "^2.1318.0",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"camelcase-keys": "^6.2.2",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-basic-auth": "^1.2.0",
"express-rate-limit": "^5.2.3",
"ioredis": "^4.19.4",
"morgan": "~1.9.1",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"prompts": "^2.4.2",
"rate-limit-redis": "^2.0.0",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"snakecase-keys": "^3.2.1",
"typescript-collections": "^1.3.3"
},
"resolutions": {
"@helium/address": "^4.12.0",
"@solana/web3.js": "^1.87.6"
},
"devDependencies": {
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2"
}
}