-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "plex-ntfy",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"build": "webpack",
"dev": "nodemon ./src/index.ts",
"debug": "nodemon --exec \"node --inspect-brk=0.0.0.0:9229 --require ts-node/register src/index.ts\"",
"checkstyle": "prettier --check . ",
"lint": "eslint src/*.ts",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.2.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "2.8.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack-cli": "^5.0.1",
"webpack-node-externals": "^3.0.0"
},
"lint-staged": {
"**/*": "prettier --write ."
}
}