-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.31 KB
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
{
"name": "ambar-alert-api",
"version": "1.0.0",
"description": "This is the api for the amber alert app",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec babel-node -r dotenv/config index.js",
"eslint": "eslint .",
"seeds": "babel-node -r dotenv/config -- server/seeds/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pre-commit": "eslint",
"repository": {
"type": "git",
"url": "git+https://github.com/alsvader/ambarAlert_api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alsvader/ambarAlert_api/issues"
},
"homepage": "https://github.com/alsvader/ambarAlert_api#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mariadb": "^2.1.5",
"morgan": "^1.9.1",
"sequelize": "^5.21.3",
"swagger-ui-express": "^4.1.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.2",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1"
}
}