-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
66 lines (66 loc) · 2.07 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "bandwidth-hero-proxy",
"version": "2.3.0",
"description": "Bandwidth Hero Refactored by nyancodeid",
"main": "index.js",
"engines": {
"npm": "7.x"
},
"scripts": {
"start": "nodemon --exec babel-node ./src/index.js",
"start:server": "npm run build && node ./build/index.js",
"migrate": "babel-node ./src/migrate.js",
"clean": "rm -rf build && mkdir build",
"build": "npm run clean && npm run build:source && cp -r ./src/views ./build/views",
"build:source": "babel -d ./build ./src -s",
"serve": "node ./build/index.js",
"lint": "eslint --ext .js",
"lint:fix": "eslint --fix --ext .js",
"test": "mocha --recursive \"__test__/**/*.test.js\" --require @babel/register",
"cover": "npm run cover:test && npm run cover:report",
"cover:test": "nyc --silent npm run test",
"cover:report": "nyc report --reporter=lcov --reporter=text",
"cover:serve": "concurrently \"serve -l 5577 coverage/lcov-report\" \"open-cli http://localhost:5577/\""
},
"dependencies": {
"basic-auth": "^2.0.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"helmet": "^4.1.0",
"knex": "^0.21.21",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"pretty-bytes": "^5.3.0",
"request": "^2.88.2",
"sharp": "^0.28.3",
"signale": "^1.4.0",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/node": "^7.10.4",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.10.4",
"babel-plugin-module-resolver": "^4.0.0",
"chai": "^4.2.0",
"concurrently": "^5.3.0",
"eslint": "^7.6.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"open-cli": "^6.0.1",
"serve": "^11.3.2"
},
"author": "Ryan Aunur Rassyid <ryandevstudio@gmail.com>",
"license": "MIT"
}