-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "scmkt_back",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"migrate": "sequelize db:migrate",
"test": "jest --verbose ./routes",
"dev": "nodemon index.js"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zzzNitro/SCMKT_Back.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zzzNitro/SCMKT_Back/issues"
},
"homepage": "https://github.com/zzzNitro/SCMKT_Back#readme",
"dependencies": {
"@handlebars/allow-prototype-access": "^1.0.3",
"@sendgrid/mail": "^7.6.0",
"axios": "^0.24.0",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-handlebars": "^6.0.1",
"express-jwt": "^6.1.0",
"jwks-rsa": "^2.0.5",
"mocha": "^9.1.3",
"morgan": "^1.10.0",
"nodemailer": "^6.7.2",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.9.0",
"sequelize-cli": "^6.3.0"
},
"engines": {
"node": "14.x"
},
"devDependencies": {
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"supertest": "^6.1.6"
}
}