-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.25 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.25 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
{
"name": "microverse-api",
"version": "1.0.0",
"description": "REST-api using Node.js & express",
"main": "server.js",
"scripts": {
"test": "mocha --timeout 10000",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.ps ,./npm-debug.log --copy-files",
"start": "NODE_ENV=dev && node server.js",
"devstart": "npm run build && nodemon dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Herdismaria/Microverse-rest-api-node.git"
},
"author": "microverse students",
"license": "ISC",
"bugs": {
"url": "https://github.com/Herdismaria/Microverse-rest-api-node/issues"
},
"homepage": "https://github.com/Herdismaria/Microverse-rest-api-node#readme",
"dependencies": {
"bcrypt": "^1.0.3",
"body-parser": "^1.18.1",
"config": "^1.27.0",
"express": "^4.15.4",
"mongodb": "^2.2.31",
"mongoose": "^4.12.3",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"mocha": "^3.5.3",
"nodemon": "^1.12.1",
"rimraf": "^2.6.2"
}
}