forked from Sasnaka-Sansada/sasnaka-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.3 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
80
{
"name": "sasnaka-backend",
"version": "0.0.1",
"description": "sasnaka sansada web application backend with node and express",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "nodemon --watch src start",
"db:migrate": "npx sequelize-cli db:migrate",
"test": "cross-env NODE_ENV=test jest --detectOpenHandles --testTimeout=5000",
"pretest": "cross-env NODE_ENV=test npm run db:migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sasnaka-Sansada/sasnaka-backend.git"
},
"keywords": [
"nodejs",
"expressjs",
"sasnaka",
"sequelize",
"postgresql"
],
"author": "gayaldassanayake",
"license": "ISC",
"bugs": {
"url": "https://github.com/Sasnaka-Sansada/sasnaka-backend/issues"
},
"homepage": "https://github.com/Sasnaka-Sansada/sasnaka-backend#readme",
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"child-process-promise": "^2.2.1",
"cloudinary": "^1.22.0",
"connect-session-sequelize": "^6.1.1",
"cors": "^2.8.5",
"crypto-random-string": "^3.2.0",
"datauri": "^3.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"mariadb": "^2.4.2",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"nodemailer": "^6.4.8",
"nodemailer-handlebars": "^1.0.1",
"nodemailer-sendgrid": "^1.0.3",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"sequelize": "^5.21.8",
"winston": "^3.2.1"
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.0",
"jest": "^26.6.3",
"jsdoc": "^3.6.4",
"nodemon": "^2.0.6",
"prettier": "^2.0.5",
"sequelize-cli": "^5.5.1",
"supertest": "^4.0.2"
}
}