-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.22 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
{
"name": "foliomark-graphql",
"version": "0.0.1",
"description": "graphql middle tier of foliomark",
"main": "dist/index.js",
"scripts": {
"test": "test",
"start": "tsc && node dist/index.js",
"localDev": "tsc && node dist/localDev.js",
"app.deploy": "tsc && gcloud functions deploy web",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "https://github.com/mrnigelalford/foliomark-graphql"
},
"keywords": [
"graphql",
"apollo"
],
"author": "mrnigelalford",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.0.0",
"@oxheadalpha/fa2-interfaces": "^4.0.0",
"@taquito/signer": "^12.0.0",
"@taquito/taquito": "^12.0.0",
"apollo-mongodb-datasource": "^1.1.0",
"apollo-server-cloud-functions": "^3.6.2",
"axios": "^0.26.1",
"ebook-convert": "^2.0.1",
"graphql": "^16.3.0"
},
"devDependencies": {
"@google-cloud/functions-framework": "^2.1.1",
"@taquito/tezbridge-signer": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"assert": "^2.0.0",
"dotenv": "^16.0.0",
"eslint": "^8.8.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5"
}
}