-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.41 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": "script_hero",
"version": "1.0.0",
"description": "Create personal platform RESTful API Endpoints with nodejs and expressjs",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=development node --require babel-register index.js",
"server": "NODE_ENV=development nodemon --require babel-register index.js",
"test": "NODE_ENV=test nyc --reporter=html --reporter=text mocha --timeout 15000 --require babel-register tests/* --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"heroku-postbuild": "NODE_ENV=production NPM_CONFIG_PRODUCTION=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dushimeemma/script_hero.git"
},
"author": "Dushime Emmanuel",
"license": "ISC",
"bugs": {
"url": "https://github.com/dushimeemma/script_hero/issues"
},
"homepage": "https://github.com/dushimeemma/script_hero#readme",
"dependencies": {
"babel-register": "^6.26.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.29"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.1.0",
"mocha": "^8.1.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0"
},
"engines": {
"node": "10.19.0"
}
}