-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.58 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
{
"name": "prandium-tempus-backend",
"version": "1.0.0",
"description": "",
"main": "./src/index.ts",
"scripts": {
"start": "nodemon",
"start-prod": "NODE_ENV=production node dist/index.js",
"build": "tsc",
"lint": "tslint --project tsconfig.json -c tslint.json",
"lint-ci": "tslint --project tsconfig.json -c tslint.json --format junit -o reports/junit/js-lint-results.xml",
"test": "npm run lint && jest",
"test-ci": "jest --ci --runInBand --reporters=default --reporters=jest-junit && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"prisma": "prisma"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felipeap92/prandium-tempus-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/felipeap92/prandium-tempus-backend/issues"
},
"homepage": "https://github.com/felipeap92/prandium-tempus-backend#readme",
"devDependencies": {
"@types/aws-lambda": "^8.10.26",
"@types/faker": "^4.1.5",
"@types/graphql": "^14.2.0",
"@types/jest": "^24.0.13",
"@types/ws": "^6.0.1",
"coveralls": "^3.0.3",
"faker": "^4.1.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"nodemon": "^1.19.1",
"prisma": "^1.34.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
},
"dependencies": {
"apollo-server": "^2.5.1",
"graphql": "^14.3.1",
"prisma-client-lib": "^1.34.0",
"reflect-metadata": "^0.1.13",
"tsconfig-paths": "^3.8.0",
"type-graphql": "^0.17.4"
}
}