-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "music-library-api",
"version": "0.1.0",
"description": "Playground project implementing a music library API",
"main": "src/server.js",
"scripts": {
"test": "NODE_ENV=TEST mocha './{,!(node_modules)/**}/*.test.js'",
"start": "node src/server.js",
"watch-node": "nodemon src/server.js",
"lint": "eslint src/**",
"prettier": "prettier --list-different './src/**/*.js'"
},
"lint-staged": {
"src/**/*.js": [
"npm run lint",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/arisgk/music-library-api.git"
},
"keywords": [
"music",
"library",
"api",
"express"
],
"author": "Aris Goudouras",
"license": "ISC",
"bugs": {
"url": "https://github.com/arisgk/music-library-api/issues"
},
"homepage": "https://github.com/arisgk/music-library-api#readme",
"dependencies": {
"aws-sdk": "^2.388.0",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"helmet": "^3.15.0",
"morgan": "^1.9.1",
"socket.io": "^2.2.0",
"winston": "^3.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.1",
"lint-staged": "^8.1.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"prettier": "^1.15.3",
"sinon": "^7.2.2",
"supertest": "^3.3.0"
}
}