-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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
{
"name": "monkemaps-api",
"version": "1.0.0",
"description": "MonkeMaps API",
"main": "dist/app.js",
"author": "0xDon",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "nodemon src/app.ts -w",
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"watch-tsc": "tsc -w",
"deploy": "node dist/app.js",
"devdeploy": "env-cmd -f development.env node dist/app.js",
"watch-deploy": "nodemon dist/app.js",
"watch-deploydev": "env-cmd -f development.env nodemon dist/app.js",
"server": "concurrently \"yarn run watch-tsc\" \"yarn run watch-deploy\"",
"server:dev": "concurrently \"yarn run watch-tsc\" \"yarn run watch-deploydev\"",
"start": "yarn run deploy",
"start:dev": "yarn run devdeploy",
"heroku-postbuild": "yarn run tsc"
},
"dependencies": {
"@mapbox/mapbox-sdk": "^0.13.3",
"@solana/web3.js": "^1.77.3",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.182",
"@types/mapbox__mapbox-sdk": "^0.13.4",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.31",
"airtable": "^0.11.3",
"assert": "^2.0.0",
"bs58": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"express-validator": "^6.14.1",
"helmet": "^5.1.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mongoose": "^6.4.6",
"morgan": "^1.10.0",
"puppeteer": "^14.2.1",
"ts-node": "^10.8.1",
"tslint": "^6.1.3",
"tweetnacl": "^1.0.3",
"typescript": "^4.6.4"
},
"devDependencies": {
"concurrently": "^7.2.1",
"env-cmd": "^10.1.0",
"nodemon": "^2.0.16"
}
}