generated from AthennaIO/Template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"name": "@athenna/tsconfig",
"version": "5.0.0",
"description": "Exports the base TypeScript configuration for Athena applications and packages.",
"license": "MIT",
"author": "João Lenon <[email protected]>",
"bugs": "https://github.com/AthennaIO/Tsconfig/issues",
"repository": "https://github.com/AthennaIO/Tsconfig.git",
"homepage": "https://github.com/AthennaIO/Tsconfig#readme",
"keywords": [
"esm",
"tsconfig",
"athenna",
"typescript"
],
"files": [
"src/*.js",
"src/**/*.js",
"*.json",
"**/*.json"
],
"scripts": {},
"type": "module",
"exports": {
".": "./src/index.js",
"./package": "./package.json",
"./package.json": "./package.json",
"./tsc": "./src/tsc.js",
"./copyfiles": "./src/copyfiles.js",
"./tsconfig.app.json": "./tsconfig.app.json",
"./tsconfig.app-build.json": "./tsconfig.app-build.json",
"./tsconfig.app-slim.json": "./tsconfig.app-slim.json",
"./tsconfig.base.json": "./tsconfig.base.json",
"./tsconfig.lib.json": "./tsconfig.lib.json",
"./tsconfig.lib-build.json": "./tsconfig.lib-build.json"
},
"dependencies": {
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.14",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"devDependencies": {
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^3.1.0"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}