This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.76 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": "ccims-backend",
"version": "0.1.0",
"description": "Backend for the Cross-Component Issue Management System",
"main": "out/src/index.js",
"scripts": {
"database": "node scripts/database.js",
"database-file": "node scripts/database.js init-db.sql",
"start-docker": "tsc && node out/index.js",
"schema": "tsc && node scripts/generateSchema.js",
"start": "tsc && node out/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ccims/ccims-backend-gql.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/ccims/ccims-backend-gql/issues"
},
"homepage": "https://github.com/ccims/ccims-backend-gql#readme",
"dependencies": {
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/express-graphql": "^0.9.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^26.0.10",
"@types/jsonwebtoken": "^8.5.0",
"@types/markdown-it": "^10.0.2",
"@types/pg": "^7.14.4",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"graphql": "^15.3.0",
"jest": "^26.4.2",
"jsonwebtoken": "^8.5.1",
"markdown-it": "^11.0.1",
"pg": "^8.3.3",
"pg-types": "^3.0.1",
"postgres-interval": "^2.1.0",
"ts-jest": "^26.3.0"
},
"devDependencies": {
"tslint": "^6.1.3",
"typescript": "^4.0.3"
}
}