-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.95 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
64
65
66
67
68
{
"name": "nogizaka-news",
"version": "1.3.0",
"description": "@n46_news is a Twitter bot focusing on retweeting news about Nogizaka46. We also recently added a function to tweet today's schedules of Nogizaka46 members every day.",
"private": "true",
"dependencies": {
"@babel/runtime": "^7.10.2",
"axios": "^0.26.0",
"cheerio": "^1.0.0-rc.3",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"twit": "^2.2.11"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/axios": "^0.14.0",
"@types/cheerio": "^0.22.17",
"@types/jest": "^25.2.3",
"@types/request": "^2.48.4",
"@types/request-promise": "^4.1.46",
"@types/twit": "^2.2.23",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.24.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"ts-node": "^8.9.1",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"start": "node ./dist/bundle.js",
"type-check": "tsc --noEmit",
"format": "prettier './src/**/*.ts' --write",
"lint": "eslint --ignore-path .gitignore . --ext ts",
"lint:fix": "eslint --ignore-path .gitignore . --ext ts --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": [
"lint-staged"
]
}
},
"author": "shawnrivers",
"license": "MIT"
}