-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.83 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "thesynaxisserver",
"version": "1.0.0",
"description": "Server for The Synaxis",
"main": "dist/index.js",
"engines": {
"node": "17.3.0"
},
"scripts": {
"build": "rimraf dist && tsc",
"dev:knex": "cross-env NODE_ENV=development knex migrate:latest",
"staging:knex": "cross-env NODE_ENV=staging knex migrate:latest",
"predev": "npm run build && npm run dev:knex",
"dev": "cross-env NODE_ENV=development concurrently 'tsc --watch' 'nodemon dist/index.js'",
"prestart": "npm run build",
"start": "node dist/index.js NODE_ENV",
"test": "cross-env NODE_ENV=test jest --runInBand",
"test:cov": "cross-env NODE_ENV=test jest --runInBand --coverage",
"commit": "cz",
"lint": "eslint '**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --write '**/*.ts'",
"format": "npm run prettier && npm run lint:fix",
"predeploy": "npm run format && npm run test:cov",
"husky-lint": "npm run predeploy",
"coveralls": "npm run test:cov && cat ./coverage/lcov.info | coveralls"
},
"lint-staged": {
"src/**/*.ts": [
"npm run predeploy"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mosesintech/theSynaxisServer.git"
},
"keywords": [
"orthodox",
"christian",
"api",
"quotes",
"scripture"
],
"author": "@mosesintech",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/mosesintech/theSynaxisServer/issues"
},
"homepage": "https://github.com/mosesintech/theSynaxisServer#readme",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/graphql-iso-date": "^3.4.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.13",
"@types/supertest": "^2.0.11",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"commitizen": "^4.2.4",
"concurrently": "^7.0.0",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.3.2",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3"
},
"dependencies": {
"body-parser-graphql": "^1.1.0",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"date-fns": "^2.28.0",
"dotenv": "^14.3.0",
"express": "^4.17.2",
"express-graphql": "^0.12.0",
"graphql": "^16.5.0",
"helmet": "^5.0.2",
"knex": "^1.0.1",
"pg": "^8.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.5",
"winston": "^3.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"types": {
"feat": {
"description": "A new feature",
"title": "Features"
},
"fix": {
"description": "A bug fix",
"title": "Bug Fixes"
},
"docs": {
"description": "Documentation only changes",
"title": "Documentation"
},
"style": {
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)",
"title": "Styles"
},
"refactor": {
"description": "A code change that neither fixes a bug nor adds a feature",
"title": "Code Refactoring"
},
"test": {
"description": "Adding missing tests or correcting existing tests",
"title": "Tests"
},
"chore": {
"description": "Other changes that don't modify src or test files",
"title": "Chores"
}
}
}
}
}