-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.33 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "book-a-meal",
"version": "1.0.0",
"main": "app.js",
"directories": {
"test": "test"
},
"dependencies": {
"async": "^2.6.1",
"async-es": "^2.6.1",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser": "^1.18.2",
"bootstrap": "^4.0.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"dotenv": "^5.0.1",
"ejs": "^2.5.9",
"eslint": "^4.18.2",
"express": "^4.16.3",
"express-validator": "^5.1.2",
"hbs": "^4.0.1",
"moment": "^2.22.1",
"mongoose": "^5.0.11",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"npm": "^6.0.1",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"readline-sync": "^1.4.9",
"router": "^1.3.2",
"sequelize": "^4.37.7",
"serve-favicon": "^2.5.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-eslint": "^8.2.3",
"babel-plugin-istanbul": "^4.1.6",
"bcrypt": "^2.0.1",
"coveralls": "^3.0.1",
"cross-env": "^5.1.5",
"eslint-config-strongloop": "^2.1.0",
"eslint-plugin-mocha": "^5.0.0",
"istanbul": "^0.4.5",
"jshint": "^2.9.5",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.17.4",
"nyc": "^11.7.3",
"sequelize-cli": "^4.0.0"
},
"ava": {
"files": [
"test/**/*.js"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"scripts": {
"start": "nodemon --exec babel-node app.js --presets env,stage-2",
"test": "cross-env NODE_ENV=test nyc mocha --compilers js:babel-register ./src/test/*.test.js --recursive --timeout 50000 --exit",
"migrate": "sequelize db:migrate:undo:all && sequelize db:migrate",
"seed": "sequelize db:seed:undo:all && sequelize db:seed:all",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "ephraim",
"license": "ISC",
"keywords": [],
"description": ""
}