-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.19 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
{
"name": "recife",
"version": "0.7.8",
"description": "MVC Framework for GraphQL",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://recifejs.org/",
"repository": "https://github.com/recifejs/recife",
"scripts": {
"build": "tsc -p . && yarn types",
"test": "mocha -r ts-node/register --timeout 10000 test/**/*.test.ts",
"coverage": "nyc npm run test",
"types": "npm-dts generate -o ./dist/index.d.ts -L error"
},
"files": [
"dist",
"bin",
"README.md"
],
"bin": {
"recife": "./bin/recife"
},
"dependencies": {
"apollo-server-core": "^2.17.0",
"choose-port": "^0.3.2",
"open": "^7.2.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.0",
"@types/node": "^14.6.0",
"@types/sinon": "^9.0.0",
"chai": "^4.2.0",
"fast-deep-equal": "^3.1.3",
"mocha": "^8.1.0",
"npm-dts": "^1.3.0",
"nyc": "^15.1.0",
"sinon": "^9.0.0",
"ts-node": "^8.10.2",
"typescript": "^4.0.0"
},
"bugs": {
"url": "https://github.com/recifejs/recife/issues"
},
"keywords": [
"recife",
"mvc",
"framework",
"graphql",
"nodejs"
]
}