-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/CzerwoniakPlus/api.git",
"author": "Mateusz Tatko",
"license": "BSD-3-Clause",
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"btoa": "^1.2.1",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"firebase-admin": "^11.0.1",
"got": "11.8.5",
"helmet": "^5.1.1",
"https": "^1.0.0",
"jsdom": "^20.0.0",
"moment": "^2.29.4",
"morgan": "^1.10.0",
"node-cron": "^3.0.1",
"querystring": "^0.2.1",
"sanitize-html": "^2.7.1",
"xml2js": "^0.4.23"
},
"scripts": {
"clean": "rimraf build/",
"copy-static": "copyfiles -u 1 public/* build/public/",
"dev": "ts-node-dev --respawn --pretty --transpile-only src/app.ts",
"build": "yarn clean && tsc && yarn copy-static"
},
"devDependencies": {
"@types/btoa": "^1.2.3",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/helmet": "^4.0.0",
"@types/jsdom": "^20.0.0",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.2",
"@types/node-cron": "^3.0.2",
"@types/sanitize-html": "^2.6.2",
"@types/xml2js": "^0.4.11",
"copyfiles": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}