-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.67 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
{
"name": "vrgamedeals-tools",
"version": "2.0.0",
"author": "Kevin Novak",
"description": "Tools for r/vrgamedeals.",
"license": "MIT",
"private": true,
"engines": {
"node": ">=12.14.0"
},
"type": "module",
"exports": [
"./dist/start.js"
],
"scripts": {
"lint": "eslint . --cache --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --cache --ext .js,.jsx,.ts,.tsx",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"clean": "git clean -xdf --exclude=\"/config/**/*\"",
"clean:dry": "git clean -xdf --exclude=\"/config/**/*\" --dry-run",
"build": "tsc --project tsconfig.json",
"postinstall": "npm run build",
"start": "node --enable-source-maps dist/start.js",
"start:pm2": "npm run pm2:start",
"pm2:start": "pm2 start process.json",
"pm2:stop": "pm2 stop process.json",
"pm2:delete": "pm2 delete process.json"
},
"dependencies": {
"cheerio": "1.0.0-rc.12",
"chrono-node": "^2.6.4",
"express": "4.18.2",
"express-promise-router": "4.1.1",
"luxon": "3.3.0",
"node-fetch": "3.3.1",
"pm2": "^5.3.0"
},
"devDependencies": {
"@types/express": "4.17.17",
"@types/luxon": "3.3.0",
"@types/node": "20.4.2",
"@types/node-fetch": "2.6.4",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^48.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}