-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.09 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
78
79
80
81
82
83
84
85
86
{
"name": "ts-template",
"version": "0.1.0",
"description": "TypeScript template project",
"license": "MIT",
"author": "taichi",
"main": "dist/index.js",
"scripts": {
"build": "run-s clean lint compile test",
"bundle": "parcel build src/index.ts --target=node --global main --bundle-node-modules --no-source-maps",
"clean": "del-cli -f dist coverage",
"clean:all": "del-cli -f dist .cache",
"compile": "tsc --project .",
"lint": "tslint --project .",
"start": "ts-node src/main.ts",
"test": "ava",
"test:coverage": "nyc ava",
"watch": "ava -w"
},
"ava": {
"extensions": [
"ts"
],
"files": [
"test/**/*.test.ts"
],
"require": [
"ts-node/register",
"tsconfig-paths/register"
],
"verbose": true
},
"nyc": {
"all": true,
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": false,
"include": [
"src"
],
"reporter": [
"lcov",
"text"
]
},
"dependencies": {
"convict": "^6.0.0",
"dotenv": "^16.0.0",
"pino": "^8.0.0",
"pino-pretty": "^10.0.0",
"streaming-iterables": "^6.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/convict": "6.1.6",
"@types/dotenv": "8.2.3",
"@types/node": "22.10.2",
"@types/pino": "7.0.5",
"@types/prettier": "2.7.3",
"@types/source-map-support": "0.5.10",
"ava": "4.3.3",
"cpy-cli": "4.2.0",
"cross-env": "7.0.3",
"del-cli": "4.0.1",
"npm-run-all2": "5.0.2",
"nyc": "15.1.0",
"parcel": "2.12.0",
"prettier": "2.8.8",
"sort-package-json": "2.12.0",
"source-map-support": "0.5.21",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.2.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "5.0.4",
"typescript-tslint-plugin": "1.0.2",
"typesync": "0.9.2"
},
"resolutions": {
"https-proxy-agent": "^5.0.0",
"serialize-to-js": "^3.0.2",
"acorn": "^8.0.0",
"kind-of": "^6.0.3"
}
}