-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "loungefm",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev:server": "NODE_ENV=development nodemon server.js",
"dev:client": "parcel watch src/index.html",
"dev": "concurrently npm:dev:*",
"start": "npm run clean && parcel build src/index.html && nodemon server.js",
"clean": "rm -rf dist .cache",
"format": "pretty-quick"
},
"keywords": [],
"author": "John Sylvain",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-transform-runtime": "^7.10.3",
"concurrently": "^5.2.0",
"nodemon": "^2.0.4",
"parcel-bundler": "^1.12.4",
"parcel-plugin-sw-precache": "^1.1.2",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
},
"dependencies": {
"@dropb/ffprobe": "^1.5.0",
"@hapi/hapi": "^19.1.1",
"@polka/send-type": "^0.5.2",
"aws-sdk": "^2.703.0",
"compression": "^1.7.4",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"execa": "^4.0.2",
"extract-zip": "^2.0.1",
"polka": "^0.5.2",
"rimraf": "^3.0.2",
"sirv": "^1.0.1",
"throttle": "^1.0.3"
}
}