-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 867 Bytes
/
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
{
"name": "lyrix-api",
"version": "1.0.0",
"description":
"A micro service to aggregate music lyrics api request results.",
"main": "index.js",
"scripts": {
"start": "micro",
"precommit": "lint-staged",
"deploy": "now --public && now alias",
"dev": "micro-dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Andrew R Chen",
"license": "ISC",
"dependencies": {
"dotenv": "^5.0.1",
"micro": "^9.3.0",
"node-fetch": "^2.1.2",
"spotify-web-api-node": "^3.1.1"
},
"devDependencies": {
"prettier": "^1.12.1",
"husky": "^0.14.3",
"lint-staged": "^7.1.0",
"micro-dev": "^2.2.2"
},
"now": {
"dotenv": true,
"name": "lyrix-api-v1",
"alias": "lyrix-api-v1.now.sh"
},
"lint-staged": {
"./*.{js,json}": ["prettier --single-quote --write", "git add"]
}
}