-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 975 Bytes
/
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
{
"name": "pawtreon",
"version": "1.2.0",
"description": "Patreon bridge",
"main": "dist/index.js",
"scripts": {
"prebuild": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build": "tsc",
"lint": "eslint . --fix",
"start": "node dist/main.js",
"debug": "nodemon src/main.ts"
},
"author": "Alex Ottr <alex@ottr.one>",
"license": "MIT",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"nodemon": "^2.0.15",
"ts-node": "^10.9.1",
"typescript": "^4.6.2"
},
"dependencies": {
"axios": "^0.26.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"helmet": "^5.0.2",
"mongoose": "^6.2.4",
"nanoid": "^3.3.1"
}
}