-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
50
51
52
53
54
55
{
"name": "anycicd",
"version": "2.0.0",
"private": false,
"bin": "bin/www.ts",
"scripts": {
"start": "node ./bin/www.ts",
"dev": " nodemon ",
"clean": "rm -r -- dist built",
"compile": "tsc",
"build": "yarn run compile;yarn run build:generic",
"build:generic": "./build.sh generic",
"build:armv6": "./build.sh rpi"
},
"pkg": {
"scripts": "./*.js",
"assets": [
"logs/*",
"exec/*"
],
"targets": [
"latest-x64-linux",
"latest-x64-windows"
]
},
"dependencies": {
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"debug": "~4.3.4",
"dotenv": "^16.4.4",
"express": "~4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"morgan": "~1.10.0",
"rotating-file-stream": "^3.2.1",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.6",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.19",
"@types/shelljs": "^0.8.15",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"nodemon": "^3.0.3",
"pkg": "^5.8.1",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
}
}