-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 890 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
37
{
"name": "mmm-amazon-photos",
"version": "1.0.0",
"description": "Magic Mirror Module to get Amazon Photos as background images",
"scripts": {
"lint": "eslint .",
"prepare": "husky install",
"prettier": "prettier . --write",
"test": "jest",
"test:coverage": "jest --coverage",
"start": "sh ./run-docker.sh"
},
"keywords": [
"amazon-photos",
"magic-mirror"
],
"author": "sthuber90",
"license": "MIT",
"dependencies": {
"axios": "^0.25.0"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.2.1",
"prettier": "2.5.1"
},
"lint-staged": {
"**/*.js": "eslint --fix",
"**/*": "prettier --write --ignore-unknown"
}
}