-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.93 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.93 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "mne-backend",
"version": "1.0.0",
"description": "Monitoring and evaluation system",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-server": "babel src --out-dir dist -s",
"clean": "rm -rf dist && mkdir dist",
"serve": "node dist/index.js",
"build": "npm run clean && npm run build-server",
"start": "NODE_ENV=production npm run build",
"start:dev": "NODE_ENV=development DEBUG=log nodemon --exec babel-node src/index.js",
"db:seed": "node_modules/.bin/sequelize db:seed:all $* --seeders-path src/database/seeders",
"db:migrate": "node_modules/.bin/sequelize db:migrate",
"db:migrate:undo": "node_modules/.bin/sequelize db:migrate:undo",
"db:rollback": "node_modules/.bin/sequelize db:migrate:undo:all",
"db:rollmigrate": "yarn db:rollback && yarn db:migrate && yarn db:seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Benkimeric/MnE-Backend.git"
},
"author": "BoltC0rt3z, Benkimeric",
"license": "MIT",
"bugs": {
"url": "https://github.com/Benkimeric/MnE-Backend/issues"
},
"homepage": "https://github.com/Benkimeric/MnE-Backend#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"http": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"sequelize": "^6.21.2",
"socket.io": "^4.5.1",
"uniqid": "^5.4.0"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/eslint-parser": "^7.18.2",
"@babel/node": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.18",
"sequelize-cli": "^6.4.1"
}
}