This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.96 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
{
"name": "lyft-oss-website",
"description": "Lyft OSS Website",
"version": "1.0.0",
"author": "Mohsen Azimi <[email protected]>",
"scripts": {
"prestart": "yarn && yarn run validate-json",
"start": "gatsby develop",
"prebuild": "yarn run validate-json",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write *.{js,ts,tsx,json,css,md}",
"validate-json": "ajv validate -s projects.schema.json -d projects.json",
"pretest": "yarn lint",
"test": "yarn run validate-json && tsc --pretty",
"deploy": "gatsby build && gh-pages -d public",
"precommit": "lint-staged",
"lint": "tslint --project . 'src/**/*.{ts,tsx}' --format codeFrame"
},
"lint-staged": {
"*.{js,ts,tsx,json,css,md}": ["prettier --write", "git add"]
},
"dependencies": {
"@types/node": "^9.4.4",
"@types/react": "16.0.36",
"@types/react-dom": "16.0.3",
"@types/react-helmet": "^5.0.3",
"ajv-cli": "^3.0.0",
"gatsby": "^1.9.188",
"gatsby-link": "^1.6.28",
"gatsby-plugin-favicon": "^2.1.1",
"gatsby-plugin-react-helmet": "^2.0.4",
"gatsby-plugin-styled-components": "^2.0.5",
"gatsby-plugin-typescript": "^1.4.10",
"gatsby-plugin-typography": "^1.7.13",
"gatsby-source-github-api": "^0.0.3",
"gh-pages": "^1.1.0",
"github-language-colors": "https://github.com/doda/github-language-colors",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"normalize.css": "^8.0.0",
"prettier": "^1.8.2",
"react-helmet": "^5.2.0",
"styled-components": "^3.1.6",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.7.0",
"typography": "^0.16.6",
"typography-theme-bootstrap": "^0.16.7",
"typography-theme-doelger": "^0.15.11"
},
"resolutions": {
"**/phantomjs-prebuilt": "2.1.16"
}
}