-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 4.3 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "ortmesh-blog",
"description": "A blog by Rajjeet Phull on software development",
"version": "1.6.1",
"license": "MIT",
"scripts": {
"clean": "gatsby clean",
"dev": "gatsby develop",
"start": "npm run dev",
"build": "npm run clean && gatsby build",
"prod": "npm run build && gatsby serve",
"deploy:aws-s3": "aws s3 sync public/ s3://$AWS_STAGING_BUCKET_NAME --acl public-read --delete --exclude CloudFrontLogs*",
"deploy": "npm run test:e2e && npm run deploy:aws-s3",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"test": "jest --silent",
"test:watch": "jest --watch",
"storybook": "NODE_ENV=production start-storybook -p 6006 -s public",
"build-storybook": "NODE_ENV=production build-storybook -s public",
"codeceptjs": "npx codeceptjs run",
"test:e2e": "start-server-and-test prod http://localhost:9000 codeceptjs",
"type-check": "tsc --project ./tsconfig.json --noEmit",
"check-all": "npm test && npm run type-check && npm run lint && npm run test:e2e",
"postversion": "git push && git push --tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run type-check"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint:fix",
"git add"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-brands-svg-icons": "^5.8.2",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@mdx-js/mdx": "^1.4.4",
"@mdx-js/react": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"disqus-react": "^1.0.7",
"gatsby": "^2.1.2",
"gatsby-background-image": "^0.8.12",
"intersection-observer": "^0.7.0",
"lodash": "^4.17.11",
"prismjs": "^1.17.1",
"react": "^16.8.6",
"react-clipboard.js": "^2.0.16",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"react-share": "^3.0.1",
"styled-components": "^4.3.2",
"tocbot": "^4.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@storybook/addon-actions": "^5.1.11",
"@storybook/addon-knobs": "^5.1.11",
"@storybook/addon-links": "^5.1.11",
"@storybook/addons": "^5.1.11",
"@storybook/react": "^5.1.11",
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.1.3",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"@types/react": "^16.8.6",
"@types/react-dom": "^16.9.0",
"@types/testing-library__react": "^9.1.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-prismjs": "^1.1.1",
"babel-plugin-remove-graphql-queries": "^2.7.5",
"babel-plugin-styled-components": "^1.10.0",
"babel-preset-gatsby": "^0.2.11",
"chai": "^4.2.0",
"codeceptjs": "^2.3.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-codeceptjs": "^1.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"gatsby-image": "^2.0.29",
"gatsby-plugin-google-analytics": "^2.0.20",
"gatsby-plugin-manifest": "^2.0.17",
"gatsby-plugin-mdx": "^1.0.39",
"gatsby-plugin-offline": "^2.0.23",
"gatsby-plugin-react-helmet": "^3.0.6",
"gatsby-plugin-sharp": "^2.2.19",
"gatsby-plugin-styled-components": "^3.0.7",
"gatsby-plugin-typescript": "^2.1.6",
"gatsby-plugin-webpack-size": "^1.0.0",
"gatsby-remark-images": "^3.0.4",
"gatsby-remark-prismjs": "^3.3.12",
"gatsby-source-filesystem": "^2.0.20",
"gatsby-transformer-remark": "^2.2.5",
"gatsby-transformer-sharp": "^2.2.13",
"husky": "^3.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"jest-styled-components": "^6.3.3",
"lint-staged": "^9.2.5",
"lodash-webpack-plugin": "^0.11.5",
"puppeteer": "^1.19.0",
"start-server-and-test": "^1.10.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5",
"url-join": "^4.0.1"
}
}