-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.71 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
{
"name": "graphql-starter",
"version": "0.0.0-dev",
"private": true,
"engines": {
"node": ">=12"
},
"scripts": {
"dev": "node -r loud-rejection/register node_modules/ts-node-dev/bin/ts-node-dev --no-notify --no-deps --transpileOnly src",
"inspect": "node -r loud-rejection/register node_modules/ts-node-dev/bin/ts-node-dev --no-notify --no-deps --inspect --transpileOnly src",
"test:r": "node node_modules/jest/bin/jest --runInBand --verbose",
"test:w": "npm run test:r -- --watch",
"test:cov": "npm run test:r -- --collectCoverage",
"test:d": "node --inspect-brk node_modules/jest/bin/jest --runInBand --testMatch \"<rootDir>/src/**/*.spec.ts\"",
"tscheck": "echo tscheck... && tsc --noEmit",
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"tscheck:w": "npm run tscheck -- --watch",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"eslint": "node node_modules/eslint/bin/eslint src --ext ts",
"eslint:fix": "npm run eslint -- --fix",
"build": "sh Taskfile build",
"tslint:fix": "node node_modules/tslint/bin/tslint -p tsconfig.json --fix",
"lint:fix": "npm run tslint:fix || true && npm run eslint:fix",
"commit": "node node_modules/cz-customizable/standalone.js",
"cmlint": "sh Taskfile commit_lint"
},
"dependencies": {
"@abraham/reflection": "^0.7.0",
"apollo-server": "^2.10.1",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"dataloader": "^2.0.0",
"graphql": "^14.6.0",
"injectant": "^1.1.0",
"type-graphql": "^0.18.0-beta.8"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/jest": "^25.1.3",
"@types/node": "^13.7.4",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"cz-customizable": "^6.2.0",
"eslint": "^6.8.0",
"eslint-import-resolver-node": "^0.3.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^5.0.1",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-unicorn": "^16.1.1",
"eslint-plugin-wix-editor": "^3.0.0",
"jest": "^25.1.0",
"loud-rejection": "^2.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"simplytyped": "^3.2.3",
"ts-jest": "^25.2.1",
"ts-node-dev": "^1.0.0-pre.44",
"tslint": "^6.0.0",
"tslint-clean-code": "^0.2.10",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-etc": "^1.10.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "~3.8.2",
"watchexec-bin": "^1.0.0"
}
}