-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
79 lines (79 loc) · 2.21 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
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
77
78
79
{
"name": "@jagql/framework",
"version": "5.6.14",
"description": "A config driven NodeJS framework implementing json:api",
"keywords": [
"jsonapi",
"graphql",
"json:api",
"jagql",
"swagger",
"api"
],
"main": "lib/jsonApi.js",
"types": "types/jsonApi.d.ts",
"author": "Arnav Gupta <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jagql/framework"
},
"engines": {
"node": ">=8",
"npm": ">=5",
"yarn": ">=1"
},
"dependencies": {
"@types/express": "^4.11.1",
"@types/joi": "^14.0.0",
"async": "2.6.1",
"cookie-parser": "1.4.4",
"debug": "^4.1.0",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^15.0.0",
"joi": "^14.0.0",
"joi-date-extensions": "^1.2.0",
"lodash.assign": "4.2.0",
"lodash.isequal": "4.5.0",
"lodash.omit": "4.5.0",
"lodash.pick": "4.4.0",
"lodash.uniq": "4.5.0",
"lodash.uniqby": "4.7.0",
"qs": "6.5.2",
"request": "2.88.0",
"use-strict": "1.0.1",
"uuid": "^8.0.0"
},
"devDependencies": {
"eslint": "5.0.1",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "4.0.0",
"eslint-plugin-standard": "4.0.0",
"jscpd": "0.6.22",
"lokka": "1.7.0",
"lokka-transport-http": "1.6.1",
"mocha": "7.1.2",
"mocha-performance": "0.1.1",
"nyc": "11.8.0",
"swagger-tools": "0.10.4",
"typedoc": "^0.12.0",
"typedoc-plugin-external-module-name": "^1.1.1",
"v8-profiler": "5.7.0"
},
"scripts": {
"start": "node example/server.js",
"test": "mocha",
"cover": "nyc mocha",
"report": "nyc report --reporter=html --reporter=lcov",
"performance": "node --allow-natives-syntax --harmony ./node_modules/mocha/bin/_mocha -S --reporter mocha-performance ./test/*.js",
"lint": "eslint ./example ./lib ./test --quiet && echo '✔ All good!'",
"jscpd": "jscpd --blame -p ./lib/ || echo 'Finished!'",
"ci": "npm run jscpd && npm run lint && npm run cover",
"predocs": "rimraf docs && mkdir -p docs",
"docs": "typedoc types",
"postdocs": "touch docs/.nojekyll"
}
}