-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 920 Bytes
/
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
{
"name": "x",
"main": "lib/index.js",
"license": "MIT",
"private": true,
"scripts": {
"dev": "tsnd --no-notify ./src",
"dev:sync": "ts-node ./src/utils/syncDatabase",
"build": "tsc",
"prod": "node ./lib/src",
"prod:sync": "node ./lib/src/utils/syncDatabase"
},
"dependencies": {
"arweave": "^1.7.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mime": "^2.4.6",
"pg": "^8.2.1",
"reflect-metadata": "^0.1.13",
"semver": "^7.3.2",
"typeorm": "^0.2.25"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/mime": "^2.0.2",
"@types/semver": "^7.2.0",
"cross-env": "^7.0.2",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.5"
}
}