-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 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
{
"name": "query-console",
"version": "1.0.9",
"description": "A console for tracking and inspecting the queries being made by applications via tailing and parsing log files.",
"main": "src/index.js",
"scripts": {
"build": "parcel build src/client/index.html",
"start:client": "serve dist/",
"start:server": "node src/server/index.js",
"start:client:dev": "parcel src/client/index.html --open",
"start": "./bin/start.sh",
"test": "test"
},
"author": "Michael Clayton",
"preferGlobal": true,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"alias": {
"react": "preact-compat",
"react-dom": "preact-compat"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
]
},
"prepublishOnly": "npm run build",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"classnames": "^2.2.6",
"cors": "^2.8.4",
"express": "^4.16.3",
"helmet": "^3.13.0",
"node-sass": "^4.9.3",
"preact": "^8.3.1",
"preact-compat": "^3.18.3",
"recompose": "^0.28.2",
"serve": "^10.0.0",
"tail": "^1.3.0"
},
"devDependencies": {
"babel-preset-preact": "^1.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"parcel-bundler": "^1.9.7",
"prettier": "^1.14.2"
},
"bin": {
"query-console": "./bin/start.sh"
}
}