-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.56 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.56 KB
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": "@hoctail/client",
"version": "1.4.0",
"description": "Hoctail CLI client",
"main": "index.js",
"types": "./types/index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"cli": "HOCTAIL_ENDPOINT=ws://localhost:3333 NODE_ENV=development node cli.js",
"test": "jest"
},
"author": "Hoctail",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"@babel/preset-react": "^7.14.5",
"@hoctail/query": "^1.2.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0-1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/pluginutils": "^4.1.0",
"babel-plugin-inline-react-svg": "^1.1.1",
"babel-plugin-transform-jsx-to-htm": "^2.0.0",
"babel-plugin-transform-modern-regexp": "^0.0.6",
"babel-preset-react-app": "^10.0.0",
"chalk": "^4.1.1",
"child-process-promise": "^2.2.1",
"commander": "^5.0.0",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"magic-string": "^0.25.7",
"mime-types": "^2.1.24",
"node-fetch": "^2.6.1",
"pkg-up": "^3.1.0",
"rollup": "^2.38.1",
"tar": "^6.1.0",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"docdash": "^1.2.0",
"jest": "^27.0.3",
"jsdoc": "^3.6.6",
"jsdoc-to-markdown": "^6.0.1",
"source-map": "0.6.1",
"typescript": "^4.0.0"
},
"bin": {
"hoctail": "cli.js"
}
}