-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·79 lines (79 loc) · 2.64 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "avengers-phantom-be",
"version": "1.0.0",
"description": "Avengers phantom Backend Project Setup",
"main": "app.js",
"scripts": {
"prestart": "npm run migrate && npm run seed:undo:all && npm run seed",
"start": "node server.js",
"start:dev": "nodemon --exec babel-node -r dotenv/config server.js",
"migrate": "npx sequelize-cli db:migrate",
"migrate:undo": "npx sequelize-cli db:migrate:undo",
"migrate:undo:all": "npx sequelize-cli db:migrate:undo:all",
"seed": "npx sequelize-cli db:seed:all",
"seed:undo:all": "npx sequelize-cli db:seed:undo:all",
"create": "npx sequelize-cli db:create",
"drop:db": "npx sequelize-cli db:drop",
"seed:undo": "npx sequelize-cli db:seed:undo",
"test": "cross-env NODE_ENV=test npm run test:cmd",
"test:cmd": "npm run drop:db && npm run create && npm run migrate && npm run seed && nyc mocha src/docs/test src/**/*.test.js --timeout 50000",
"coverage": "nyc npm run test",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atlp-rwanda/Avengers-Phantom-BE.git"
},
"author": "Avengers",
"license": "ISC",
"bugs": {
"url": "https://github.com/atlp-rwanda/Avengers-Phantom-BE/issues"
},
"homepage": "https://github.com/atlp-rwanda/Avengers-Phantom-BE#readme",
"dependencies": {
"@sendgrid/mail": "^7.6.2",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.30.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"generate-password": "^1.7.0",
"i18next": "^21.6.16",
"i18next-fs-backend": "^1.1.4",
"i18next-http-middleware": "^3.2.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^6.7.3",
"nyc": "^15.1.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.19.0",
"sequelize-cli": "^6.4.1",
"socket.io": "^4.5.1",
"swagger-jsdoc": "^6.2.0",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"mocha": "^9.2.2",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"sinon": "^13.0.2"
}
}