-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 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
44
45
46
{
"name": "hlm-papers",
"version": "0.0.0",
"author": "Charles-Henri Arnould <charnould@icloud.com>",
"license": "UNLICENSED",
"type": "module",
"scripts": {
"test": "node --test",
"lint": "npx eslint . --fix",
"format": "npx prettier format . --write",
"build": "ncu -u && npm install --no-package-lock && npm run lint && npm run format"
},
"dependencies": {
"better-sqlite3": "^8.1.0",
"cheerio": "^1.0.0-rc.12",
"crawlee": "^3.2.2",
"date-fns": "^2.29.3",
"puppeteer": "^19.7.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 170
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"ignorePatterns": [
"docs/assets/sanddance.js",
"docs/assets/vega.js"
],
"env": {
"node": true,
"jest": true,
"es2021": true
},
"rules": {
"camelcase": "off"
},
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true
}
}
}