-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "api-mercability",
"version": "1.0.0",
"description": "NodeJS, Express, Mongoose REST APIs.",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"test": "export NODE_ENV=test || SET NODE_ENV=test && mocha server/**/*.test.js",
"test-watch": "nodemon --exec 'npm test'",
"linux": "true",
"windows": "false",
"wintest": "SET \"NODE_ENV=test\" && mocha server/**/*.test.js"
},
"engines": {
"node": "10.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corderogerardo/mercabilityAPI.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/corderogerardo/api-todos/issues"
},
"homepage": "https://github.com/corderogerardo/api-todos#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"crypto-js": "^3.1.9-1",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.1",
"moment": "^2.22.2",
"mongodb": "^3.0.1",
"mongoose": "^4.13.9",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"validator": "^9.2.0"
},
"devDependencies": {
"expect": "^22.1.0",
"mocha": "^4.1.0",
"nodemon": "^1.14.11",
"supertest": "^3.0.0"
}
}