-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.99 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
58
59
60
61
{
"name": "ink-starter",
"version": "1.0.0",
"license": "MIT",
"bin": "dist/index.js",
"engines": {
"node": ">=14"
},
"files": [
"dist/index.js",
"static"
],
"scripts": {
"build": "yarn typecheck:source && rimraf dist && node esbuild.js && chmod +x dist/index.js",
"checks": "yarn typecheck && yarn lint && yarn prettier:check && yarn test --coverage",
"dev:base": "ts-node-dev --transpile-only --quiet --exit-child --project tsconfig.build.json -r tsconfig-paths/register",
"dev:clear": "yarn dev:base --clear src/index.tsx",
"dev:clear:hang": "yarn dev:base --clear --respawn src/index.tsx",
"dev:hang": "yarn dev:base --respawn src/index.tsx",
"dev": "yarn dev:base src/index.tsx",
"lint": "eslint .",
"prettier:check": "prettier --check .",
"prettier": "prettier --write --list-different .",
"start": "./dist/index.js",
"test": "jest src",
"typecheck:source": "tsc --project ./tsconfig.source.json",
"typecheck:tests": "tsc --project ./tsconfig.spec.json",
"typecheck": "yarn typecheck:source && yarn typecheck:tests"
},
"dependencies": {
"ink": "^3.2.0",
"react": "^17.0.2"
},
"devDependencies": {
"@jest/types": "^28.1.3",
"@types/jest": "^28.1.7",
"@types/node": "^18.7.8",
"@types/react": "^17.0.48",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"chalk": "^4.1.2",
"esbuild": "^0.15.5",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"ink-testing-library": "^2.1.0",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "~4.7.4"
}
}