-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 964 Bytes
/
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
{
"name": "nodejs-log-parser-poc",
"version": "1.0.0",
"scripts": {
"prepare": "husky install",
"test": "cross-env NODE_OPTIONS='--unhandled-rejections=strict' jest",
"test:watch": "cross-env NODE_OPTIONS='--unhandled-rejections=strict' jest --watch",
"start": "cross-env NODE_OPTIONS='--unhandled-rejections=strict' ts-node ./src/index.ts",
"sniff": "cross-env NODE_OPTIONS='--unhandled-rejections=strict' ts-node ./src/index-sniffer.ts"
},
"license": "ISC",
"dependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^28.1.6",
"@types/n-readlines": "^1.0.3",
"@types/node": "^18.6.2",
"@types/sqlite3": "^3.1.8",
"babel-jest": "^27.4.6",
"cross-env": "^7.0.3",
"husky": "^8.0.0",
"jest": "^28.1.3",
"n-readlines": "^1.0.1",
"sqlite3": "^5.0.11",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}