-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "query-watcher-js",
"version": "1.0.3",
"description": "CLI to print Laravel QueryWatcher's output.",
"repository": "https://github.com/csimpi/query-watcher-js",
"main": "build/QueryLogWatcher.js",
"scripts": {
"test": "jest",
"start:dev": "nodemon",
"build": "rimraf ./build && tsc",
"start:prod": "npm run build && node build/QueryLogWatcher.js",
"lint": "eslint . --fix",
"prepublishOnly" : "npm test && npm run lint",
"prepare" : "npm run build",
"preversion" : "npm run lint"
},
"bin": {
"query-watcher": "build/QueryLogWatcher.js"
},
"keywords": ["query-watcher","laravel","SQL-query-watcher"],
"author": "bitmads",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"ioredis": "^5.2.2",
"prism-console": "^1.0.2",
"prismjs": "^1.28.0",
"prismjs-components-importer": "^0.2.0",
"pusher-js": "^7.4.0",
"readline-async": "^0.1.0",
"rxjs": "^7.5.6",
"socket.io": "^4.5.1",
"table": "^6.8.0"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"rimraf": "^3.0.2",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"babel-jest": "^29.0.0",
"eslint": "^8.22.0",
"jest": "^29.0.0",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}