-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.03 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "guizaussd",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "husky install",
"lint": "eslint src --ext .js",
"lint:fix": "npm run lint -- --fix",
"clean": "rimraf build",
"build": "npm run clean && babel src -d build",
"start": "cross-env NODE_ENV=production npm run build && node --require @babel/register --require @babel/polyfill ./build/server.js",
"dev": "cross-env NODE_ENV=development nodemon --require @babel/register --require @babel/polyfill ./src/server.js",
"generator": "node_modules/.bin/sequelize-auto -o './src/database/models' -d test_gv4_qa_loans -h localhost -u root -e mysql",
"migrate": "sequelize db:migrate",
"migrate:undo": "sequelize db:migrate:undo"
},
"repository": {
"type": "git",
"url": ""
},
"author": "NIYODUSENGA Clement",
"license": "ISC",
"homepage": "",
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.1.1",
"joi": "^17.2.1",
"joi-phone-number": "^5.0.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.2.5",
"sequelize": "^6.3.5",
"sequelize-auto": "^0.7.5",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/register": "^7.13.16",
"babel-plugin-module-resolver": "^4.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"sequelize-cli": "^6.2.0"
}
}