-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
37 lines (37 loc) · 903 Bytes
/
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
{
"name": "docker-boilerplate",
"version": "1.0.0",
"description": "Docker+Node.js+MySQL+Nginx boilerplate example app",
"scripts": {
"docker:start": "docker-compose up --build || true",
"docker:stop": "docker-compose down"
},
"engines": {
"node": ">=10.9.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.17.1",
"longjohn": "^0.2.12",
"morgan": "^1.9.1",
"mysql2": "^1.6.5",
"sequelize": "^5.8.6",
"winston": "^3.2.1"
},
"nodemonConfig": {
"ignore": [
"node_modules/*",
"static/*",
".db/*"
],
"delay": "750"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-node": "^9.1.0",
"nodemon": "^1.19.1"
}
}