-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.14 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.14 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "cnodejs-graphql-api-apollo",
"version": "1.0.0",
"engines": {
"node": ">=10.0.0",
"npm": ">=6.13.4"
},
"description": "GraphQL API for cnodejs.org apollographql version",
"main": "./dist/main.js",
"scripts": {
"start": "node ./dist/main.js",
"test": "jest",
"coverage": "npm t -- --coverage --coverageReporters=text-lcov --colors | coveralls",
"dev": "npx ts-node ./src/main.ts",
"build": "npm run clean && tsc",
"clean": "rimraf ./dist",
"ci": "npm test && npm run build",
"gen-yarn-lock-file": "rimraf ./yarn.lock && yarn import"
},
"keywords": [
"graphql",
"apollographql",
"API",
"cnodejs",
"RESTful API"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mrdulin/cnodejs-graphql-api-apollo.git"
},
"bugs": {
"url": "https://github.com/mrdulin/cnodejs-graphql-api-apollo/issues"
},
"homepage": "https://github.com/mrdulin/cnodejs-graphql-api-apollo#readme",
"author": "mrdulin <novaline.dulin@gmail.com>",
"license": "MIT",
"dependencies": {
"apollo-datasource-rest": "^0.6.11",
"apollo-server": "^2.14.2",
"apollo-server-express": "^2.14.2",
"apollo-server-testing": "^2.9.16",
"apollo-upload-server": "^7.1.0",
"express": "^4.17.1",
"graphql": "^14.5.8",
"graphql-tools": "^4.0.6",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"mkdirp": "^0.5.1",
"morgan": "^1.9.1",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"shortid": "^2.2.15",
"subscriptions-transport-ws": "^0.9.16"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/jest": "^24.0.25",
"@types/jsonwebtoken": "^8.3.6",
"@types/lodash": "^4.14.149",
"@types/mkdirp": "^0.5.2",
"@types/morgan": "^1.7.37",
"@types/request": "^2.48.4",
"@types/request-promise": "^4.1.45",
"coveralls": "^3.0.9",
"dotenv": "^8.2.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-jest": "^24.3.0",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.4"
}
}