-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "@divops/todo-cli",
"version": "0.0.106",
"alias": "todo-cli",
"packageManager": "yarn@3.2.0",
"bin": {
"todo": "./bin/internal.js"
},
"publishConfig": {
"bin": {
"todo": "./dist/index.js"
}
},
"scripts": {
"dev:watch": "nodemon -e ts,tsx --watch src ./bin/internal.js",
"dev": "node ./bin/internal.js",
"build": "rm -rf dist && tsc -p tsconfig.json && echo \"$(echo '#!/usr/bin/env node'; cat ./dist/index.js)\" > ./dist/index.js",
"prepack": "yarn build",
"start": "node dist/index.js",
"postpack": "node dist/index.js install"
},
"dependencies": {
"@babel/core": "^7.17.9",
"@divops/utils-date": "^0.0.1",
"@divops/utils-github-storage": "^0.0.2",
"@divops/utils-json-storage": "^0.0.2",
"@divops/utils-node-bin-alias": "^0.0.4",
"@divops/utils-node-bin-path": "^0.0.3",
"@divops/utils-shell": "^0.0.1",
"@octokit/rest": "^18.12.0",
"@types/node": "^17.0.25",
"dotenv": "^16.0.0",
"extract-zip": "^2.0.1",
"ink": "^3.2.0",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"recoil": "^0.7.2",
"typescript": "^4.6.3"
},
"devDependencies": {
"@babel/preset-react": "^7.16.7",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/eslint": "^8",
"@types/prettier": "^2",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.14.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0"
},
"files": [
"dist"
]
}