-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.49 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@jser/watch-list",
"version": "1.0.0",
"description": "A collection of items that are explained in JSer.info.",
"keywords": [
"jser",
"rss"
],
"homepage": "https://github.com/jser/watch-list",
"bugs": {
"url": "https://github.com/jser/watch-list/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jser/watch-list.git"
},
"license": "MIT",
"author": "azu",
"sideEffects": false,
"main": "lib/watch-list.js",
"module": "module/watch-list.js",
"types": "lib/watch-list.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"bin/",
"lib/",
"module"
],
"scripts": {
"website": "npm run build",
"gen:watch-list": "ts-node src/watch-list.ts",
"gen:rss-list": "ts-node src/rss-list.ts",
"gen:web-list": "ts-node src/web-list.ts",
"gen:opml-list": "ts-node src/opml-list.ts",
"update-data": "npm run gen:watch-list && npm run gen:rss-list && npm run gen:opml-list && npm run gen:web-list",
"summary": "node summary.mjs",
"build": "webpack --mode production && cp -r data/ dist/data/",
"dev": "npm run gen:watch-list && webpack serve --mode development",
"clean": "rimraf lib/ module/",
"prepare": "git config --local core.hooksPath .githook",
"prepublishOnly": "npm run clean && npm run build",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"test": "mocha \"test/**/*.ts\"",
"watch": "tsc -p . --watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"prettier": {
"printWidth": 120,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "none"
},
"devDependencies": {
"@types/lodash.groupby": "^4.6.7",
"@types/mocha": "^10.0.1",
"@types/node": "^20.11.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"html-webpack-plugin": "^5.5.0",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"p-all": "^5.0.0",
"playwright": "^1.47.2",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@jser/data-fetcher": "^1.2.1",
"@jser/stat": "^1.2.1",
"dayjs": "^1.11.7",
"lodash.groupby": "^4.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}