-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "EatnGo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node .",
"dev": "nodemon .",
"build": "pkg -t latest-linux-x64 -o ./app.dev ./index.js",
"precommit": "lint-staged",
"doc": "apidoc -i src/controllers/",
"test": "exit 0"
},
"lint-staged": {
"src/**/*.js": [
"eslint src --ext .js",
"prettier --write",
"git add"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"awilix": "^4.2.0",
"camelcase": "^5.2.0",
"compression": "^1.7.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"firebase-admin": "^7.1.1",
"helmet": "^3.15.0",
"jsonwebtoken": "^8.5.0",
"knex": "^0.16.3",
"morgan": "^1.9.1",
"node-dependency-injection": "^2.2.1",
"objection": "^1.5.3",
"pg": "^7.8.0",
"stripe": "^6.28.0",
"swagger-ui-express": "^4.0.2"
},
"devDependencies": {
"eslint": "^5.12.0",
"lint-staged": "^8.1.0",
"nodemon": "^1.18.9"
}
}