-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.3 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
{
"name": "nft-marketplace-graphql-server",
"version": "1.0.0",
"description": "Graphql API function for nft marketplace lambda.Digital",
"main": "handler.js",
"scripts": {
"build": "tsc",
"dev": "GENERATE_SCHEMA=true serverless invoke local -f graphql -p query.json",
"deploy-dev": "NODE_ENV=dev serverless deploy -s dev -r eu-central-1",
"deploy-prod": "NODE_ENV=prod serverless deploy -s production -r eu-central-1",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'",
"offline": "NODE_ENV=dev serverless offline start"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^7.5.0",
"apollo-server": "^3.10.2",
"apollo-server-lambda": "^3.10.2",
"class-validator": "^0.13.2",
"graphql": "^15.3.0",
"type-graphql": "^1.1.1",
"source-map-support": "^0.5.21",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/supertest": "^2.0.12",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"serverless": "^3.22.0",
"serverless-offline": "^10.0.0",
"serverless-plugin-typescript": "^2.1.2",
"supertest": "^6.2.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}