-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "rki-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "pm2-runtime start ecosystem.config.yaml --env production",
"dev": "node dist/server.js",
"build": "tsc && npm run docs:build",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "prettier --check .",
"lint:fix": "prettier --write ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@marlon360/express-queue": "^1.0.3",
"axios": "^1.7.7",
"compression": "^1.7.4",
"cors": "^2.8.5",
"csv-parse": "^4.16.3",
"express": "^4.21.0",
"express-redis-cache-next": "^1.2.1",
"lzma-native": "^8.0.6",
"pm2": "^5.4.2",
"sharp": "^0.32.6",
"svgson": "^5.3.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/lzma-native": "^4.0.4",
"@types/node": "^16.18.62",
"prettier": "2.4.1",
"typescript": "^4.4.4",
"vuepress": "^1.9.10"
},
"engines": {
"node": ">=16.0.0 <17"
}
}