This repository was archived by the owner on Dec 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.47 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.47 KB
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
{
"name": "vue-cloudfront-api",
"version": "0.0.1",
"private": true,
"description": "Official RESTful api for vue-cloudfront",
"author": "Simon Reinisch",
"license": "MIT",
"keywords": [],
"main": "/src/app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ovanta/vue-cloudfront-api"
},
"scripts": {
"dev": "nodemon ./src/app.js --ignore '/_storage' --watch src",
"debug": "node %NODE_DEBUG_OPTION% ./src/app.js",
"build:docker": "docker build -f docker/Dockerfile . -t vue-cloudfront-rest-api",
"update:geoip-lite": "cd node_modules/geoip-lite && npm run-script updatedb",
"wipe:sessions": "node ./scripts/wipe-sessions.js",
"start:ws": "node ./src/app.js",
"start": "node ./scripts/start.js",
"stop": "pm2 delete vue-cloudfront-server",
"lint": "eslint ./src"
},
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"geoip-lite": "^1.3.7",
"graceful-fs": "^4.2.0",
"i18n-iso-countries": "^4.2.0",
"ajv": "^6.10.2",
"jszip": "^3.2.2",
"mongodb": "^3.2.7",
"mongoose": "^5.7.5",
"multer": "^1.4.2",
"pm2": "^3.5.1",
"redis": "^2.8.0",
"ua-parser-js": "^0.7.20",
"ws": "^7.1.0"
},
"devDependencies": {
"eslint": "^6.0.1",
"nodemon": "^1.19.1"
}
}