forked from capsule-corp-ternoa/nft-marketplace-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.82 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
{
"name": "nft-marketplace-api",
"version": "1.2.1",
"description": "ternoa nft marketplace server",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/*",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean lint tsc",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts --exec npm run dev:start",
"start": "node .",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "^6.14.1",
"@sentry/tracing": "^6.14.1",
"@types/apicache": "^1.6.1",
"abort-controller": "^3.0.0",
"apicache": "^1.6.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"graphql": "^16.0.1",
"graphql-request": "^3.6.1",
"install": "^0.13.0",
"joi": "^17.4.2",
"mongoose": "^6.0.12",
"mongoose-aggregate-paginate-v2": "^1.0.5",
"mongoose-paginate-v2": "^1.4.2",
"node-fetch": "^2.6.6",
"npm": "^8.1.3",
"oauth": "^0.9.15",
"pino": "^7.1.0",
"socket.io": "^4.3.2"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/crypto-js": "^4.0.2",
"@types/express": "^4.17.13",
"@types/mongoose-aggregate-paginate-v2": "^1.0.3",
"@types/mongoose-paginate-v2": "^1.4.0",
"@types/node": "^16.11.6",
"@types/node-fetch": "^2.5.12",
"@types/oauth": "^0.9.1",
"@types/pino": "^6.3.12",
"nodemon": "^2.0.14",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.4"
}
}