-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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
39
{
"name": "node-graphql-cosmos",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"gen": "graphql-codegen --config codegen.yml",
"start:dev": "nodemon",
"lint": "eslint . --ext .ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@azure/cosmos": "^3.9.3",
"apollo-server": "^2.19.0",
"dotenv": "^8.2.0",
"graphql": "^15.4.0",
"graphql-import": "^1.0.2"
},
"devDependencies": {
"@graphql-codegen/cli": "1.19.4",
"@graphql-codegen/graphql-modules-preset": "^1.1.0",
"@graphql-codegen/introspection": "1.18.1",
"@graphql-codegen/typescript": "1.19.0",
"@graphql-codegen/typescript-resolvers": "1.18.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.2.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
}
}