-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "rongyu",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "tsc -p .",
"start:dev": "nodemon --watch 'src/**/*' -e ts,tsx --exec ts-node ./src/app.ts | pino-pretty",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/cumbreras/rongyu"
},
"dependencies": {
"@prisma/cli": "^2.0.0-beta.2",
"@prisma/client": "^2.0.0-beta.2",
"apollo-server": "^2.14.2",
"awilix": "^4.2.5",
"dotenv": "^8.2.0",
"graphql": "^14.0.0",
"immer": "^6.0.3",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.3",
"pino": "^6.1.1",
"pino-pretty": "^4.0.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.8.2",
"type-graphql": "^0.17.6"
},
"devDependencies": {
"@types/faker": "^4.1.11",
"@types/graphql": "^14.5.0",
"@types/jest": "^25.2.1",
"@types/jsonwebtoken": "^8.3.9",
"@types/node": "^13.11.1",
"@types/pino": "^5.17.0",
"@types/uuid": "^7.0.2",
"apollo-server-testing": "^2.12.0",
"faker": "^4.1.0",
"jest": "^25.3.0",
"ts-jest": "^25.3.1",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
}
}