-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "chatwork-term",
"version": "0.0.1",
"description": "A terminal client for ChatWork",
"main": "index.js",
"repository": "https://github.com/uki00a/chatwork-term",
"author": "uki00a",
"license": "MIT",
"private": false,
"engines": {
"node": ">= 10"
},
"scripts": {
"build": "NODE_ENV=production babel src --out-dir lib --ignore './src/**/*.test.js'",
"rebuild": "yarn run clean && yarn run build",
"watch": "babel src --verbose --watch --out-dir lib --ignore './src/**/*.test.js'",
"clean": "rm -rf ./lib"
},
"dependencies": {
"axios": "^0.18.0",
"make-dir": "^3.0.0",
"marked": "^0.6.2",
"marked-terminal": "^3.2.0",
"neo-blessed": "^0.2.0",
"rax": "^1.0.4",
"rax-blessed-driver": "^0.0.1",
"xdg-basedir": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0"
}
}