-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 995 Bytes
/
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-todo-cli",
"version": "1.0.3",
"license": "MIT",
"repository": {
"url": "https://github.com/nipatiitti/ink-todo-cli"
},
"bin": {
"todo": "dist/todo.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc",
"start": "yarn build && node dist/todo.js",
"dev": "nodemon --config nodemon.json -I source/todo.tsx"
},
"files": [
"dist/todo.js"
],
"dependencies": {
"@reduxjs/toolkit": "^1.5.0",
"@types/ink-big-text": "^1.2.0",
"@types/ink-gradient": "^2.0.1",
"@types/node": "^14.14.13",
"@types/react": "^17.0.0",
"@types/react-redux": "^7.1.12",
"figures": "^3.2.0",
"ink": "^3.0.8",
"ink-big-text": "^1.2.0",
"ink-gradient": "^2.0.0",
"ink-text-input": "^4.0.1",
"ink-use-stdout-dimensions": "^1.0.5",
"meow": "^8.0.0",
"nodemon": "^2.0.6",
"react": "^16.14.0",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"redux-persist": "^6.0.0",
"redux-persist-node-storage": "^2.0.0",
"typescript": "^4.1.3"
}
}