forked from mentorchita/EventsExpress_Node_js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.58 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
{
"name": "eventsexpress_node_js",
"description": "EventsExpress project Node.js part",
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node src/index.js",
"start:dev": "cross-env NODE_ENV=development nodemon src/index.js",
"db-migration": "npx sequelize-cli db:migrate:undo:all && npx sequelize-cli db:migrate && npx sequelize-cli db:seed:all",
"lint": "eslint **/*.js",
"lint:fix": "eslint --fix **/*.js",
"test": "jest --coverage",
"docker:start": "npm run db-migration && cross-env NODE_ENV=production node src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ita-social-projects/EventsExpress_Node_js.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ita-social-projects/EventsExpress_Node_js/issues"
},
"homepage": "https://github.com/ita-social-projects/EventsExpress_Node_js#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-joi-validation": "^5.0.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"sequelize": "^6.17.0"
},
"devDependencies": {
"eslint": "7.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "5.2.0",
"jest": "^27.5.1",
"nodemon": "2.0.15",
"sequelize-cli": "^6.4.1"
}
}