-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.29 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
{
"name": "project_name",
"version": "1.0.0",
"main": "dist/app.js",
"license": "MIT",
"engines": {
"node": ">=14.17.0"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"dev": "rimraf dist && env-cmd -f .env.local tsc-watch -p tsconfig.json --onSuccess \"node dist/app.js\"",
"tdd": "env-cmd -f .env.test jest --coverage --forceExit --runInBand --detectOpenHandles --watch",
"test": "env-cmd -f .env.test jest --coverage --forceExit --runInBand --detectOpenHandles --no-caches --passWithNoTests",
"fmt": "yarn lint:fix \"./**/*.{ts,js}\" && yarn prettier:fix \"./**/*.{ts,js}\"",
"lint:fix": "eslint --fix",
"prettier:fix": "prettier --write --config .prettierrc.js",
"test:clean": "jest --clearCache",
"test:config": "jest --showConfig",
"prepare": "husky install"
},
"dependencies": {
"apollo-server": "^3.4.0",
"apollo-server-core": "^3.4.0",
"apollo-server-express": "^3.4.0",
"axios": "^0.26.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.1",
"cli-highlight": "^2.1.11",
"dataloader": "2.0.0",
"debug": "^4.3.4",
"deep-equal": "^2.0.5",
"express": "^4.17.1",
"fast-safe-stringify": "^2.1.1",
"graphql": "^15.3.0",
"http-status-codes": "^2.2.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
"typedi": "^0.10.0"
},
"devDependencies": {
"@commitlint/cli": "16.0.2",
"@commitlint/config-conventional": "16.0.0",
"@types/deep-equal": "^1.0.1",
"@types/express": "^4.17.12",
"@types/jest": "^27.4.0",
"@types/node": "14.17.0",
"@types/prettyjson": "^0.0.30",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"apollo": "2.33.10",
"env-cmd": "^10.1.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"jest": "^27.0.4",
"lint-staged": "12.1.7",
"prettier": "^2.3.1",
"prettyjson": "^1.2.5",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"tsc-watch": "^4.4.0",
"typescript": "^4.3.3"
},
"lint-staged": {
"./**/*.{js,ts}": [
"yarn lint:fix",
"yarn prettier:fix"
]
}
}