-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "can-i-has-woolies",
"version": "1.0.0",
"repository": "[email protected]:gvnn/can-i-has-woolies.git",
"author": "Giovanni Ferron <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/config": "^0.0.36",
"@types/figlet": "^1.2.0",
"@types/inquirer": "^6.5.0",
"@types/node": "^12.12.31",
"@types/node-notifier": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"nodemon": "^2.0.2",
"prettier": "^2.0.2",
"typescript": "^3.8.3"
},
"scripts": {
"build": "tsc",
"postinstall": "npm run build",
"start": "node lib/index.js",
"watch": "tsc -w",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"chalk": "^3.0.0",
"commander": "^5.0.0",
"config": "^3.3.1",
"date-fns": "^2.11.0",
"figlet": "^1.3.0",
"gaxios": "^3.0.2",
"inquirer": "^7.1.0",
"node-notifier": "^8.0.1",
"open": "^7.0.3"
}
}