-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 929 Bytes
/
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
{
"name": "freemiumtube",
"version": "1.0.0",
"description": "This repository is a personal side project made during a course at Wild Code School.",
"homepage": "https://github.com/webdevbynight/freemiumtube#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/webdevbynight/freemiumtube.git"
},
"type": "module",
"main": "index.js",
"scripts": {
"setup": "npm install && cd ./public && npm install",
"browser-sync": "cd ./public && npm run browser-sync",
"validate-html": "cd ./public && npm run validate-html",
"migrate": "node migrate.js",
"dev": "nodemon index.js",
"start": "node index.js"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.21.2",
"gettext.js": "^2.0.3",
"joi": "^17.9.2",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.10.0"
},
"devDependencies": {
"nodemon": "^3.1.3"
},
"author": "Victor Brito"
}