-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 1.8 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": "contract-tracing-graphql-api",
"version": "1.0.0",
"description": "Express+Apollo Server",
"main": "build/server.js",
"scripts": {
"build": "tsc",
"dev": "node --inspect=5858 -r ts-node/register ./src/server.ts",
"dev:watch": "nodemon",
"gc:publish": "gcloud builds submit . --config=cloudbuild.yaml",
"lint": "./node_modules/.bin/eslint --ext ts ./src",
"setup": "npm run build",
"start": "node ./build/server.js",
"test": "echo \"Error: no test specified\"",
"watch": "tsc -w"
},
"dependencies": {
"apollo-server": "^2.11.0",
"apollo-server-express": "^2.11.0",
"dotenv": "^8.2.0",
"firebase-admin": "^8.10.0",
"graphql-middleware": "^4.0.2",
"graphql-shield": "^7.2.0",
"helmet": "^3.21.3",
"neo4j-driver": "^4.0.2",
"neo4j-graphql-js": "^2.13.0",
"nodemon": "^2.0.2",
"ts-node": "^8.8.1",
"tsscmp": "^1.0.6",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/eslint": "^6.1.1",
"@types/express": "^4.17.3",
"@types/helmet": "0.0.45",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.3"
},
"keywords": [
"nodejs",
"typescript",
"express",
"boilerplate",
"graphql"
],
"author": "Michele Memoli",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm run dev",
"ext": "ts"
}
}