-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "LA1TV-Backend",
"version": "1.0.0",
"description": "The re-written backend for the LA1TV website",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server",
"init-lint": "eslint --init",
"lint": "eslint *.js --fix",
"db": "node dbcli.js"
},
"keywords": [],
"author": "Melody Nicholls, LA1TV",
"license": "MIT",
"dependencies": {
"dotenv": "^8.1.0",
"express": "^4.18.1",
"express-formidable": "^1.2.0",
"fluent-ffmpeg": "^2.1.2",
"minio": "^7.0.29",
"mysql2": "^1.7.0",
"nodemailer": "^6.7.7",
"sequelize": "^6.21.2",
"yargs": "^17.5.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"sequelize-cli": "^6.4.1"
}
}