-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.13 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
{
"name": "storecomponents.store",
"private": true,
"version": "0.20.0",
"dependencies": {
"@apollo/client": "^3.3.11",
"@vtex/gatsby-plugin-cms": "^0.265.0",
"@vtex/gatsby-plugin-google-tag-manager": "0.267.0",
"@vtex/gatsby-plugin-graphql": "^0.275.0",
"@vtex/gatsby-plugin-i18n": "^0.265.0",
"@vtex/gatsby-plugin-nginx": "^0.275.0",
"@vtex/gatsby-source-vtex": "^0.275.0",
"@vtex/gatsby-theme-store": "0.267.0",
"@vtex/sfj-functions": "^1.0.1",
"@vtex/store-ui": "^0.265.0",
"babel-preset-gatsby": "^0.5.5",
"dotenv": "^8.2.0",
"gatsby": "^2.31.0",
"gatsby-plugin-manifest": "^2.4.21",
"gatsby-plugin-netlify": "^2.3.17",
"gatsby-plugin-robots-txt": "^1.5.1",
"react": "^0.14.0",
"react-dom": "^0.0.0-experimental-7f28234f8",
"ts-loader": "^8.0.17"
},
"devDependencies": {
"@vtex/lighthouse-config": "^0.265.0",
"@vtex/prettier-config": "^0.3.5",
"@vtex/tsconfig": "^0.5.5",
"eslint": "^7.14.0",
"eslint-config-vtex-react": "^6.8.3",
"husky": "^5.0.9",
"is-ci": "^2.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.0",
"typescript": "^3.9.5"
},
"resolutions": {
"@typescript-eslint/parser": "^4",
"@typescript-eslint/eslint-plugin": "^4"
},
"license": "MIT",
"scripts": {
"build": "mkdir -p public && sfj-functions . storecomponents && gatsby build --log-pages",
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"docker:serve": "sed -i -e 's/\\$PORT/80/' public/nginx.conf && docker run --rm --name local_nginx -v \"$PWD/public/nginx.conf:/etc/nginx/nginx.conf\" -v \"$PWD/public:/etc/nginx/html\" -p 80:80 -it fholzer/nginx-brotli@sha256:ebaf3265a9e21dcd4ddfe44b22d6c4d8fdec563c9a0afd69097f286fd8a0eb00",
"clean": "gatsby clean",
"format": "prettier --write \"**/*.{ts,js,tsx,jsx,json}\"",
"lint": "eslint --ext js,ts,jsx,tsx .",
"test:lhci": "lhci autorun",
"postinstall": "is-ci || husky install"
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
}
}