-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "equipment_monitoring",
"version": "1.0.0",
"description": "",
"main": "index.js",
"authors": [
"Derian Còrdoda",
"Jonathan Mendoza"
],
"repository": {
"type": "git",
"url": "https://github.com/DerianCordobaPerez/equipment_monitoring"
},
"bugs": {
"url": "https://github.com/DerianCordobaPerez/equipment_monitoring/issues"
},
"scripts": {
"dev": "nodemon --exec npx babel-node src/index.js",
"build": "npx babel src -d build",
"start": "node build/index.js",
"dev:up": "docker-compose up",
"dev:up:build": "npm run dev:up -- --build",
"dev:down": "docker-compose down"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.16.3",
"@handlebars/allow-prototype-access": "^1.0.5",
"connect-flash": "^0.1.1",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-handlebars": "^6.0.5",
"express-session": "^1.17.2",
"handlebars": "^4.7.7",
"method-override": "^3.0.0",
"mongoose": "^6.3.1",
"node-cron": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"eslint": "^8.14.0",
"nodemon": "^2.0.14"
}
}