-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.63 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
62
{
"name": "climma",
"version": "1.1.9",
"description": "The weather channel for your terminal",
"bin": {
"climma": "./bin/climma.js"
},
"repository": "git@github.com:schweller/climma.git",
"author": "Inácio Schweller <iscmendonca@gmail.com>",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"chalk": "^4.0.0",
"ink": "^2.7.1",
"ink-spinner": "^3.0.1",
"react": "^16.13.1",
"typescript": "^3.8.3"
},
"scripts": {
"clean": "rm -rf lib/",
"build": "npm run clean && tsc",
"start": "npm run build && node ./bin/climma.js London",
"eslint": "eslint ./src/**/*.ts ./src/**/*.tsx",
"prettier": "prettier --write ./src/**/*.ts",
"prettier-tsx": "prettier --write ./src/**/*.tsx"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@types/ink-spinner": "^3.0.0",
"@types/node": "^12.12.31",
"@types/react": "^16.9.31",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "2.0.2",
"tslib": "^1.11.1"
},
"files": [
"README.md",
"LICENSE",
"lib/",
"bin/"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": "prettier --write"
}
}