-
-
Notifications
You must be signed in to change notification settings - Fork 696
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 773 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 773 Bytes
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
{
"name": "account-scraper",
"version": "0.0.1",
"description": "Find spotify premium and netflix accounts for free!",
"author": "Reda Bacha",
"license": "MIT",
"main": "build/main/index.js",
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.10",
"@types/puppeteer": "^1.12.3",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"@types/react-virtualized": "^9.21.1",
"electron-fetch": "^1.3.0",
"puppeteer": "^1.14.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-virtualized": "^9.21.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"prettier --write",
"git add"
]
}
}