-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
54
55
56
57
58
59
60
61
{
"name": "xapi",
"version": "1.0.1",
"description": "A quick start template to kickstart a Node Express Api application using Sequelize ORM, Mocha Cha chai-http as test suites",
"main": "index.js",
"scripts": {
"build": "rm -rf ./build && ./node_modules/.bin/babel -d ./build ./app -s --copy-files",
"start": "npm run build && node ./build/index.js",
"dev": "nodemon ./app/index.js --exec babel-node --presets env",
"test": "nyc --reporter=html --reporter=text ./node_modules/mocha/bin/mocha --recursive --require babel-register --exit",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waleCloud/xapi.git"
},
"bin": {
"coveralls": "./bin/coveralls.js"
},
"keywords": [
"Express",
"application",
"bootstrap",
"Express",
"Sequelize",
"ORM",
"Node",
"Postgres",
"Mysql",
"Mongo",
"Web",
"framework"
],
"author": "Wale Ayandiran",
"license": "MIT",
"bugs": {
"url": "https://github.com/waleCloud/xapi/issues"
},
"homepage": "https://github.com/waleCloud/xapi#readme",
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"morgan": "^1.9.0",
"sequelize": "^4.44.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.18.3",
"nyc": "^14.1.1"
}
}