-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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": "msfs2020-api",
"version": "0.1.1",
"description": "A simple express API for livery manager",
"main": "index.js",
"repository": "https://github.com/MSFS-Mega-Pack/MSFS2020-Livery-API.git",
"engines": {
"node": ">=12.x"
},
"contributors": [
{
"name": "David Wheatley",
"email": "[email protected]",
"url": "https://davwheat.dev"
}
],
"license": "MIT",
"scripts": {
"start": "node index.js",
"watch": "pm2 start index.js --watch --name \"MSFS 2020 Livery API\" -- --color",
"restart": "yarn stop && yarn watch",
"format": "prettier --write \"**/*.{js,json}\"",
"stop": "pm2 stop index.js --watch",
"status": "pm2 status",
"monitor": "pm2 monit",
"logs": "pm2 logs \"MSFS 2020 Livery API\""
},
"dependencies": {
"@google-cloud/storage": "^5.7.0",
"@sentry/node": "^5.29.0",
"@sentry/tracing": "^5.29.0",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.11.7",
"node-fetch": "^2.6.1",
"node-rsa": "^1.1.1",
"semver": "^7.3.4",
"shrink-ray-current": "^4.1.2",
"xml-js": "^1.6.11"
},
"devDependencies": {
"pm2": "^4.5.0",
"prettier": "^2.2.1",
"eslint": "^7.15.0"
},
"optionalDependencies": {
"node-zopfli-es": "~1.0.7"
}
}