-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.03 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
{
"name": "rock-paper-scissors-cli",
"version": "0.0.0",
"license": "MIT",
"bin": "dist/cli.js",
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "babel --out-dir=dist source",
"dev": "babel --out-dir=dist --watch source",
"test": "prettier --check . && xo && ava"
},
"files": [
"dist"
],
"dependencies": {
"ink": "^4.1.0",
"ink-big-text": "^2.0.0",
"ink-select-input": "^5.0.0",
"meow": "^11.0.0",
"react": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/preset-react": "^7.18.6",
"ava": "^5.2.0",
"chalk": "^5.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"import-jsx": "^5.0.0",
"ink-testing-library": "^3.0.0",
"prettier": "2.8.8"
},
"ava": {
"environmentVariables": {
"NODE_NO_WARNINGS": "1"
},
"nodeArguments": [
"--loader=import-jsx"
]
},
"babel": {
"presets": [
"@babel/preset-react"
]
}
}