-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.72 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.72 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
51
{
"name": "eventzi_api",
"version": "1.0.0",
"description": "api for the eventzi platform frontend",
"main": "src/index.js",
"scripts": {
"start": "node src/index",
"dev": "nodemon -L src/index",
"test-events": "./node_modules/.bin/mocha 'src/test/eventsTest.js'",
"test-users": "./node_modules/.bin/mocha 'src/test/usersTest.js' ",
"test-partners": "./node_modules/.bin/mocha 'src/test/partnersTest.js' ",
"test-organizations": "./node_modules/.bin/mocha 'src/test/organizationsTest.js' ",
"test-difusion": "./node_modules/.bin/mocha 'src/test/difusionTest.js' ",
"test-dashboard": "./node_modules/.bin/mocha 'src/test/dashboardTest.js' ",
"test": "./node_modules/.bin/mocha 'src/test/**/*.js' "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Platzi-Master-TM-NancySalazar/eventzi_api.git"
},
"author": "Cohort 6 Platzi Master",
"license": "MIT",
"bugs": {
"url": "https://github.com/Platzi-Master-TM-NancySalazar/eventzi_api/issues"
},
"homepage": "https://github.com/Platzi-Master-TM-NancySalazar/eventzi_api#readme",
"dependencies": {
"aws-sdk": "^2.774.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"check-node-version": "^4.0.3",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.1.1",
"https": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"mocha": "^8.2.1",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"node-cron": "^2.0.3",
"nodemon": "^2.0.4",
"pm2": "^4.5.0",
"shelljs": "^0.8.4",
"should": "^13.2.3",
"supertest": "^6.0.1"
}
}