forked from MauricioFa/POSTIC-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.27 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
48
49
50
51
{
"name": "postic_backend",
"version": "1.6.0",
"description": "Backend of APP Point Of Sale. Final student project Escuela JS 2019 Platzi.",
"homepage": "https://github.com/MauricioFa/POSTIC-Backend#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MauricioFa/POSTIC-Backend.git"
},
"keywords": [],
"author": "Caraballo Luis, Fajardo Mauricio, Nemogá Jorge",
"license": "MIT",
"bugs": {
"url": "https://github.com/MauricioFa/POSTIC-Backend/issues"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "DEBUG=app:* nodemon index",
"start": "NODE_ENV=production node index",
"format": "prettier --write '{*.js,**/*.js}'"
},
"dependencies": {
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongodb": "^3.3.3"
},
"devDependencies": {
"chalk": "^3.0.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"nodemon": "^1.19.4",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}