-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.55 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
{
"name": "more_recipe",
"version": "1.0.0",
"description": "recipe app",
"main": "server/app.js",
"scripts": {
"start": "babel-watch server/app.js",
"babel-node": "babel-node --",
"build": "./node_modules/.bin/babel server -d build",
"dist": "./node_modules/.bin/babel server -d dist --presets=babili",
"test": "mocha server/test/*.js --exit --require babel-register --reporter spec",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coveralls": "nyc npm test&& nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seunzone/More_Recipe.git"
},
"author": "Seun Daramola <darealseun@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/seunzone/More_Recipe/issues"
},
"homepage": "https://github.com/seunzone/More_Recipe#readme",
"devDependencies": {
},
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"morgan": "^1.9.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-watch": "^2.0.7",
"babili": "^0.1.4",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"supertest": "^3.0.0"
}
}