forked from gatsbyjs/gatsby-starter-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.32 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
{
"name": "gatsby-starter-hello-world",
"private": true,
"description": "A simplified bare-bones starter for Gatsby",
"version": "0.1.0",
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop --host=0.0.0.0",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest -i",
"config:stg": "REV_ENV=stg node scripts/config.js",
"config:prod": "REV_ENV=prod node scripts/config.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"tsc": "tsc",
"stats": "REV_STATS=1 NODE_OPTIONS=--max_old_space_size=4096 npm run build"
},
"dependencies": {
"@react-pdf/renderer": "^2.1.1",
"antd": "^4.15.6",
"assert": "^2.0.0",
"babel-plugin-styled-components": "^1.12.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"dayjs": "^1.10.4",
"gatsby": "^3.4.1",
"gatsby-plugin-antd": "^2.2.0",
"gatsby-plugin-image": "^1.5.0",
"gatsby-plugin-less": "^5.5.0",
"gatsby-plugin-manifest": "^3.5.0",
"gatsby-plugin-react-helmet": "^4.5.0",
"gatsby-plugin-sharp": "^3.5.0",
"gatsby-plugin-styled-components": "^4.5.0",
"gatsby-remark-autolink-headers": "^4.4.1",
"gatsby-remark-prismjs": "^5.4.1",
"gatsby-source-filesystem": "^3.5.0",
"gatsby-transformer-json": "^3.7.1",
"gatsby-transformer-remark": "^4.4.1",
"gatsby-transformer-sharp": "^3.5.0",
"https-browserify": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"numeral": "^2.0.6",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"prismjs": "^1.23.0",
"process": "^0.11.10",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-easy-crop": "^3.5.1",
"react-helmet": "^6.1.0",
"react-player": "^2.9.0",
"react-responsive-carousel": "^3.2.21",
"react-slick": "^0.28.1",
"reconnect.js": "^1.1.1",
"rev.sdk.js": "^0.12.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"styled-components": "^5.3.0",
"styled-icons": "^10.33.0",
"url": "^0.11.0",
"util": "^0.12.3",
"validator": "^13.6.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.0.0",
"babel-eslint": "^10.0.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^1.5.0",
"eslint": "^7.5.0",
"eslint-config-revtel": "0.0.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"eslint-plugin-testing-library": "^3.9.0",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "2.2.1",
"react-test-renderer": "^17.0.2",
"typescript": "^4.3.5",
"webpack-bundle-analyzer": "^4.4.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}