forked from serafin-labs/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
{
"name": "@serafin/api",
"version": "0.13.3",
"description": "A RESTful self-descriptive API based on Serafin pipelines",
"contributors": [
{
"name": "Nicolas Degardin",
"email": "[email protected]"
},
{
"name": "Sébastien de Saint Florent",
"email": "[email protected]"
}
],
"keywords": [
"api",
"typescript",
"rest",
"self-descriptive",
"openapi",
"swagger",
"json-hal",
"graphql"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/serafin-labs/api"
},
"dependencies": {
"@serafin/open-api": "^3.0.1",
"@serafin/pipeline": "^0.18.1",
"express": "^4.18.1",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"graphql-type-json": "^0.2.1",
"jsonpointer": "^5.0.0",
"lodash": "^4.17.21",
"verror": "^1.10.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/express": "^4.17.13",
"@types/express-graphql": "^0.6.2",
"@types/graphql": "^0.13.4",
"@types/graphql-type-json": "^0.1.3",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.45",
"@types/verror": "^1.10.6",
"body-parser": "^1.20.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"clean-webpack-plugin": "^4.0.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0",
"webpack-shell-plugin-next": "^2.2.2"
},
"scripts": {
"test": "nyc mocha --require ts-node/register --require source-map-support/register --recursive ./src/test/**/*.spec.ts",
"predev": "npm install",
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"prepublishOnly": "npm install && npm run-script build && npm test"
}
}