-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "ink-foreman",
"version": "0.0.0",
"license": "MIT",
"bin": "lib/cli.js",
"engines": {
"node": ">=8"
},
"scripts": {
"ink-foreman": "ts-node src/cli.ts",
"dev": "npx react-devtools > /dev/null 2>&1 & DEV=true yarn ink-foreman",
"build": "tsc",
"test": "ava"
},
"files": [
"lib"
],
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/core": "^7.0.0-0",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.11.5",
"@types/meow": "^5.0.0",
"@types/node": "^14.11.1",
"@types/react": "^16.9.49",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"ava": "^3.12.1",
"chalk": "^4.1.0",
"eslint": "^7.9.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"ink-testing-library": "^2.0.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"ink": "^3.0.6",
"ink-use-stdout-dimensions": "^1.0.5",
"meow": "^7.1.1",
"react": "^16.13.1"
}
}