-
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.18 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.18 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": "soundify_backend",
"version": "1.0.0",
"description": "Music App",
"main": "src/index.js",
"scripts": {
"dev": "nodemon --watch ./ --exec babel-node -- index.js",
"start": "babel-node index.js",
"lint": "eslint index.js src --fix"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"author": "Ilya Pashkov",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/node": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.1.1",
"dotenv": "^6.2.0",
"eslint": "^5.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.0",
"nodemon": "^1.18.3",
"prettier": "^1.9.2",
"query-string": "^6.1.0"
},
"dependencies": {
"bcrypt": "^3.0.2",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.0",
"moment": "^2.22.2",
"mongoose": "^5.2.4",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"translitit-cyrillic-russian-to-latin": "^0.1.1",
"upath": "^1.0.2"
}
}