-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "now-playing-profile",
"private": true,
"version": "1.0.0",
"description": "Github profile",
"main": "index.js",
"dependencies": {
"faunadb": "^2.14.2",
"isomorphic-unfetch": "^3.0.0",
"querystring": "^0.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^3.9.6"
},
"devDependencies": {
"@types/node": "^14.0.22",
"@types/react": "^16.9.42",
"@types/react-dom": "^16.9.8",
"@vercel/node": "^1.7.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoshLmao/now-playing-profile.git"
},
"keywords": [],
"author": "Nate Moore",
"license": "ISC",
"bugs": {
"url": "https://github.com/JoshLmao/now-playing-profile/issues"
},
"homepage": "https://github.com/JoshLmao/now-playing-profile#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}