-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.23 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
{
"name": "jm_api_node_boilerplate",
"version": "1.0.0",
"description": "A boilerplate for web APIs using Node",
"private": true,
"main": "index.js",
"scripts": {
"start": "node scripts/start.js",
"start:watch": "nodemon scripts/start.js",
"build": "node scripts/build.js",
"test": "node scripts/test.js",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"test:coverage:watch": "npm run test -- --coverage --watchAll",
"serve": "npm run build && node dist/main.js",
"lint": "eslint \"src/**/*.js\" \"scripts/**/*.js\" && prettier --list-different \"src/**/*.js\" \"scripts/**/*.js\" | snazzy"
},
"author": "Jungle Minds <info@jungleminds.com>",
"contributors": [
"Ahmad Kababibi <ahmad.kabakibi@jungleminds.com>",
"Marvin de Bruin <marvin.de.bruin@jungleminds.com>"
],
"license": "MIT",
"dependencies": {
"@babel/core": "7.1.5",
"@babel/register": "7.0.0",
"ajv": "6.5.4",
"awilix": "4.0.0",
"awilix-express": "1.1.0",
"body-parser": "1.18.3",
"chalk": "2.4.1",
"compression": "1.7.3",
"cors": "2.8.4",
"dotenv": "6.0.0",
"dotenv-expand": "4.2.0",
"esm": "3.0.84",
"event-stream": "3.3.4",
"express": "4.16.3",
"express-status-monitor": "1.2.3",
"helmet": "3.14.0",
"http-status": "1.2.0",
"log4js": "3.0.5",
"method-override": "3.0.0",
"morgan": "1.9.1",
"pg": "7.5.0",
"pg-hstore": "2.3.2",
"request": "2.88.0",
"sequelize": "4.41.0",
"sequelize-cli": "5.2.0",
"serve-favicon": "2.5.0",
"structure": "1.3.0"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/node": "7.0.0",
"@babel/preset-env": "7.1.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"check-dependencies": "1.1.0",
"eslint": "5.6.1",
"eslint-config-prettier": "3.1.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-standard": "4.0.0",
"husky": "1.1.1",
"jest": "23.6.0",
"nodemon": "1.18.4",
"prettier": "1.14.3",
"snazzy": "8.0.0"
}
}