-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.75 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
{
"name": "soft-sight",
"description": "Retrieve list of likely explicit followers",
"version": "0.0.0",
"author": {
"name": "Mark Hernandez",
"email": "[email protected]",
"url": "https://www.lion-byte.com/"
},
"main": "n/a",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"build:lambda": "netlify-lambda build src/lambdas",
"dev": "gatsby develop",
"dev:lambda": "netlify-lambda serve src/lambdas",
"format": "npm run prettier && npm run lint -- --fix",
"lint": "eslint --ignore-path .gitignore .",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|yml|yaml|css|less|ts|md|graphql|mdx)\"",
"test": "npm run lint && npm run type",
"type": "tsc --pretty"
},
"devDependencies": {
"@lionbyte/eslint-config": "^1.6.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-helmet": "^5.0.15",
"@types/styled-components": "^4.1.8",
"eslint": "^6.8.0",
"husky": "^4.2.1",
"lint-staged": "^10.0.2",
"prettier": "^1.19.1",
"typescript": "^3.7.5",
"typescript-styled-plugin": "^0.15.0"
},
"dependencies": {
"babel-plugin-styled-components": "^1.10.6",
"date-fns": "^2.9.0",
"dotenv": "^8.2.0",
"gatsby": "^2.19.5",
"gatsby-plugin-catch-links": "^2.1.24",
"gatsby-plugin-netlify": "^2.1.31",
"gatsby-plugin-react-helmet": "^3.1.21",
"gatsby-plugin-styled-components": "^3.1.18",
"http-proxy-middleware": "^0.20.0",
"netlify-lambda": "^1.6.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-hook-form": "^4.7.0",
"styled-components": "^5.0.0",
"tumblr.js": "^2.0.2",
"typeface-nunito": "1.1.3",
"typeface-roboto": "0.0.75"
}
}