-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 939 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
{
"name": "WVS-JSON-Service",
"version": "1.0.0",
"description": "Parse RSS XML from WVS to JSON",
"main": "index.js",
"author": "Tristan Marsell <[email protected]>",
"license": "BSD-3-Clause",
"scripts": {
"tsc": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./app/app.ts",
"clean": "rm -rf build",
"rebuild:dev": "yarn run clean && yarn run dev",
"rebuild:prod": "yarn run clean && yarn run prod",
"prod": "tsc && node ./build/app.js"
},
"dependencies": {
"@types/express": "^4.17.2",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"eslint": "^6.8.0",
"express": "~4.16.1",
"morgan": "~1.9.1",
"rss-parser": "^3.7.5",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"eslint-config-google": "^0.14.0"
}
}