-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1 KB
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
{
"name": "apollo-demo",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"compile": "tsc",
"lint": "yarn eslint .",
"start": "yarn compile && node ./dist/index.js",
"start:dev": "yarn lint && tsc-watch --onSuccess \"node ./dist/index.js\""
},
"dependencies": {
"@apollo/server": "^4.3.3",
"big.js": "^6.2.1",
"dotenv": "^16.0.3",
"eslint": "^8.33.0",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"graphql-tag": "^2.12.6",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"@types/big.js": "^6.1.6",
"@types/node": "^18.11.19",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.3",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.5"
},
"engines": {
"node": "18.12.0"
}
}