-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.61 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.61 KB
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
{
"name": "app-config-ts-monorepo",
"license": "MIT",
"workspaces": [
"packages/core",
"packages/json",
"packages/yaml"
],
"private": true,
"scripts": {
"build": "yarn workspaces run build",
"clean": "tsc --build --clean",
"start": "tsc --build --watch",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand",
"lint": "eslint --cache --ext .js,.ts,.md .",
"lint:fix": "npm run lint --fix"
},
"devDependencies": {
"@qiwi/multi-semantic-release": "^6.5.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"semantic-release": "^19.0.5",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"tsup": "^6.2.3",
"typescript": "^4.8.4"
},
"jest": {
"testEnvironment": "node",
"testRegex": "\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"setupFiles": [
"<rootDir>/jest/set-env-vars.ts"
]
},
"engines": {
"node": ">=14.0.0"
}
}