-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.18 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
{
"name": "chunk",
"version": "0.0.1",
"author": "Philippe Tessier <[email protected]>",
"license": "MIT",
"scripts": {
"start": "nodemon",
"lint": "run-s -s lint:ts lint:tslint",
"lint:ts": "tsc --noEmit --skipLibCheck",
"lint:tslint": "tslint -e '**/node_modules/**' --project tsconfig.json",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"prettier": "prettier --write --ignore-path .prettierignore '**/*.{js,jsx,json,md,ts,tsx}'",
"test": "jest",
"test:ci": "jest --ci",
"coverage": "jest --coverage"
},
"dependencies": {
"@prisma/client": "2.3.0",
"apollo-errors": "^1.9.0",
"apollo-resolvers": "^1.4.2",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express-pino-logger": "^5.0.0",
"extendable-error": "^0.1.7",
"graphql-fields": "^2.0.3",
"graphql-import": "^1.0.2",
"graphql-yoga": "^1.18.3",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"nconf": "^0.10.0",
"pino": "^6.4.1",
"uuid": "^8.3.0",
"validator": "^13.1.1"
},
"devDependencies": {
"@prisma/cli": "2.3.0",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/express-pino-logger": "^4.0.2",
"@types/helmet": "^0.0.47",
"@types/jest": "^26.0.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/nconf": "^0.10.0",
"@types/pino": "^6.3.0",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.0",
"jest": "^26.2.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-jest": "^26.1.4",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.9.7",
"yarn-run-all": "^3.1.1"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests/"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"moduleNameMapper": {
"~/(.*)": "<rootDir>/src/$1"
},
"roots": [
"<rootDir>"
],
"testRegex": "((test|spec)\\.(jsx?|tsx?))$",
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}