-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
63
{
"name": "yyts-tracker",
"version": "1.0.0",
"license": "MIT",
"author": "suin <[email protected]>",
"files": [
"/bin",
"/lib"
],
"main": "index.js",
"scripts": {
"clean": "git clean -Xdf --exclude='!.idea/'",
"clean:dry": "git clean -Xdfn --exclude='!.idea/'",
"format": "run-s lint:tsc lint:*:fix",
"lint": "run-s lint:*",
"lint:tsc": "tsc --noEmit --pretty",
"lint:tslint": "tslint -p tsconfig.json -t codeFrame",
"lint:tslint:fix": "tslint -p tsconfig.json -t codeFrame --fix",
"precommit": "lint-staged",
"run:track-connpass-member-count": "ts-node src/track-connpass-member-count.ts",
"run:track-slack-member-count": "ts-node src/track-slack-member-count.ts",
"run:uploadChart": "ts-node src/uploadChart.ts"
},
"lint-staged": {
"**/package.json": [
"sort-package-json",
"git add"
],
"*.{ts,tsx}": [
"yarn lint:tslint:fix",
"git add"
]
},
"dependencies": {
"@oclif/command": "^1.5.18",
"@sentry/node": "5.6.2",
"@types/date-fns": "^2.6.0",
"@types/debug": "^4.1.5",
"aws-sdk": "^2.517.0",
"axios": "^0.19.0",
"cheerio": "^1.0.0-rc.3",
"date-fns": "^2.0.0",
"debug": "^4.1.1",
"fast-csv": "^3.4.0",
"tempy": "^0.3.0"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.13",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"sort-package-json": "^1.22.1",
"ts-node": "^8.3.0",
"ts-node-dev": "^1.0.0-pre.41",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.3"
}
}