-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "nodejs-server-starter",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc -p .",
"start": "nodemon",
"lint": "eslint . --fix",
"codegen": "graphql-codegen --config codegen.yml",
"test": "mocha --require ts-node/register test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theo-pnv/nodejs-server-starter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/theo-pnv/nodejs-server-starter/issues"
},
"homepage": "https://github.com/theo-pnv/nodejs-server-starter#readme",
"devDependencies": {
"@graphql-codegen/cli": "^1.19.3",
"@graphql-codegen/typescript": "^1.18.1",
"@graphql-codegen/typescript-resolvers": "^1.17.12",
"@types/chai": "^4.2.14",
"@types/koa-router": "^7.4.1",
"@types/mocha": "^8.0.4",
"@types/mongodb": "^3.5.34",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"apollo-server-testing": "^2.19.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.14.0",
"husky": "^4.3.0",
"mocha": "^8.2.1",
"mongodb-memory-server": "^6.9.2",
"nodemon": "^2.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@graphql-codegen/typescript-mongodb": "^1.17.9",
"@graphql-tools/schema": "^7.0.0",
"apollo-datasource-mongodb": "^0.2.8",
"apollo-server-koa": "^2.19.0",
"graphql": "^15.4.0",
"koa": "^2.13.0",
"koa-router": "^10.0.0",
"mongodb": "^3.6.3"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && npm run lint"
}
}
}