-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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": "jess-api",
"version": "1.0.0",
"description": "API for jess.gallery website",
"main": "src/index.js",
"scripts": {
"start": "nodemon src/index.js",
"precommit": "lint-staged",
"test": "eslint src"
},
"lint-staged": {
"*.{js,json,css}": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/JessArt/backend_api.git"
},
"keywords": ["javascript", "API", "express"],
"author": "Seva Zaikov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JessArt/backend_api/issues"
},
"homepage": "https://github.com/JessArt/backend_api#readme",
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"glob": "^7.1.2",
"jimp": "^0.2.28",
"morgan": "^1.9.1",
"multer": "^1.3.0",
"mysql": "^2.15.0",
"mysql2": "^2.3.3",
"nodemailer": "^4.4.1",
"request": "^2.83.0",
"rimraf": "^2.6.2"
},
"devDependencies": {
"eslint": "^4.12.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"nodemon": "^1.12.5",
"prettier": "1.9.0"
}
}