-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
69 lines (69 loc) · 1.56 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
{
"name": "paystack-music",
"version": "0.0.1",
"description": "Fetch music from Paystack #fun-music on Slack and create a playlist on Paystack's Spotify",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon",
"lint": "eslint ./",
"lint-fix": "npm run lint -- --fix",
"test": "NODE_ENV=test nyc --reporter=html --reporter=text mocha test/**/*"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"chance": "^1.1.6",
"color-contrast": "0.0.1",
"colorthief": "^2.3.0",
"crypto-js": "^4.0.0",
"dotenv": "^8.1.0",
"express": "^4.16.4",
"helmet": "^4.0.0",
"lowdb": "^1.0.0",
"moment": "^2.27.0",
"mongodb": "6.0",
"mongoose": "^7.0.0",
"puppeteer": "^1.20.0",
"spotify-web-api-node": "^4.0.0",
"validator": "^13.6.0",
"winston": "^3.3.3"
},
"repository": {
"url": "https://glitch.com/edit/#!/hello-express"
},
"license": "MIT",
"keywords": [
"node",
"express",
"paystack",
"slack",
"spotify",
"music"
],
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^3.5.3",
"nodemon": "^1.19.2",
"nyc": "^15.1.0",
"should": "^13.2.3",
"sinon": "^9.0.3",
"supertest": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"node --check",
"eslint"
]
}
}