-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.14 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": "@monkee/turbo-config",
"description": "turbo-ts-config package",
"version": "2.0.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/monke-systems/monke-turbo-config"
},
"bugs": {
"url": "https://github.com/monke-systems/monke-turbo-config/issues"
},
"homepage": "https://github.com/monke-systems/monke-turbo-config/#readme",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest --passWithNoTests -t",
"test:unit:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand -t",
"test:e2e": "jest --passWithNoTests --config tests/jest-e2e.json -t",
"test:e2e:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand --config tests/jest-e2e.json -t",
"lint": "eslint \"{src,tests}/**/*.ts\"",
"lint:fix": "eslint \"{src,tests}/**/*.ts\" --fix",
"prepublishOnly": "npm run build",
"clean": "rm -rf lib"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"deepmerge": "^4.2.2",
"dotenv": "^16.4.5",
"reflect-metadata": "^0.1.13",
"yaml": "^2.1.1",
"yargs-parser": "^21.0.1"
},
"devDependencies": {
"@monkee/eslint-config": "0.9.16",
"@types/jest": "^29.5.12",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.12.7",
"@types/validator": "13.7.4",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "4.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "5.4.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}