This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "reviewer-mocks",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "https://github.com/libero/reviewer-mocks",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start:dev": "DATA_DIRECTORY_PATH=mock-data/ CONFIG_PATH=config/config.json nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/main.ts",
"lint": "eslint --ext .js,.ts src/",
"prettier": "prettier --write 'src/**/*{ts,json}'",
"test": "DATA_DIRECTORY_PATH=mock-data/ jest /src"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"dependencies": {
"apollo-server": "^2.9.12",
"apollo-server-express": "^2.9.12",
"express": "^4.17.1",
"graphql": "^14.5.8",
"jsonwebtoken": "^8.5.1",
"uuid": "^7.0.3"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/graphql": "^14.5.0",
"@types/jest": "^24.0.18",
"@types/jsonwebtoken": "^8.3.5",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"dotenv-cli": "^3.0.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"jest": "^26.6.3",
"nodemon": "2.0.7",
"pino-pretty": "^3.2.1",
"prettier": "^1.19.1",
"ts-jest": "^26.4.4",
"ts-node": "^8.3.0",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=12.15.0"
},
"resolutions": {
"minimist": ">=0.2.1",
"yargs-parser": ">=13.1.2",
"chokidar" : ">=3.5.1"
}
}