-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.9 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
{
"name": "typescript-service-template",
"version": "0.1.0",
"description": "An opinionated template for spinning up typescript services.",
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"build": "tsc",
"generate": "graphql-codegen",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix .",
"migrate:ci": "prisma migrate deploy",
"migrate:dev": "prisma migrate dev",
"start:ci": "node dist/server/server.js",
"start:dev": "ts-node-dev --transpile-only --no-notify src/server/server.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jelkand/typescript-service-template.git"
},
"author": "Jack Anderson",
"license": "ISC",
"bugs": {
"url": "https://github.com/jelkand/typescript-service-template/issues"
},
"homepage": "https://github.com/jelkand/typescript-service-template#readme",
"devDependencies": {
"@types/jest": "^26.0.21",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"pino-pretty": "^4.7.1",
"prettier": "^2.2.1",
"prisma": "^2.19.0",
"ts-jest": "^26.5.4",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"dependencies": {
"@prisma/client": "^2.19.0",
"@types/bluebird": "^3.5.33",
"@types/graphql-iso-date": "^3.4.0",
"@types/node": "^14.14.35",
"@types/pino": "^6.3.6",
"@types/validator": "^10.11.2",
"apollo-server": "^2.21.1",
"apollo-server-plugin-base": "^0.10.4",
"apollo-server-types": "^0.6.3",
"graphql": "^15.5.0",
"graphql-iso-date": "^3.6.1",
"nexus": "^1.0.0",
"pino": "^6.11.2",
"uuid": "^8.3.2"
}
}