-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
package.json
77 lines (77 loc) · 1.85 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
{
"name": "junior-recruit-scheduler",
"version": "1.0.0",
"description": "junior recruit scheduler for korean developer",
"main": "build",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node json-validate/src/build.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/jojoldu/junior-recruit-scheduler.git"
},
"keywords": [
"recruit",
"develop"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/jojoldu/junior-recruit-scheduler/issues"
},
"homepage": "https://github.com/jojoldu/junior-recruit-scheduler#readme",
"dependencies": {
"amanda": "^1.0.1",
"app-root-path": "^3.0.0",
"fs-extra": "^10.0.1",
"ts-node": "^10.7.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"prettier": "^2.6.0",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.8",
"typescript": "^4.6.2"
},
"jest": {
"globals": {
"ts-jest": {
"isolatedModules": true
}
},
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": ".*.(spec|test).ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"roots": [
"<rootDir>/"
],
"testTimeout": 10000
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}