-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
121 lines (121 loc) · 3.97 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
{
"name": "events",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.0.0-development",
"author": "",
"engines": {
"node": "18.*",
"npm": "8.* || 9.*"
},
"dependencies": {
"@sentry/browser": "^7.66.0",
"abort-controller": "^3.0.0",
"apicache": "^1.6.2",
"autoprefixer": "^10.4.0",
"aws-sdk": "^2.1002.0",
"core-js": "^3.22.2",
"cssnano": "^5.0.10",
"dcl-catalyst-client": "^21.5.0",
"decentraland-gatsby": "^6.28.0",
"decentraland-ui": "^6.12.1",
"decentraland-ui2": "^0.8.7",
"es6-shim": "^0.35.6",
"express-fileupload": "^1.2.1",
"gatsby": "^4.23.0",
"gatsby-plugin-image": "^2.13.0",
"gatsby-plugin-manifest": "^4.13.0",
"gatsby-plugin-offline": "^5.13.0",
"gatsby-plugin-postcss": "^5.13.0",
"gatsby-plugin-react-helmet": "^5.13.0",
"gatsby-plugin-sharp": "^4.13.0",
"gatsby-plugin-sri": "^1.1.0",
"gatsby-plugin-typescript": "^4.25.0",
"gatsby-source-filesystem": "^4.25.0",
"gatsby-transformer-sharp": "^4.25.0",
"html-escaper": "^3.0.3",
"node-pg-migrate": "^6.0.0",
"pg": "^8.7.1",
"postcss": "^8.3.11",
"postcss-assets": "^6.0.0",
"postcss-svg": "^3.0.0",
"prop-types": "^15.7.2",
"rc-slider": "^10.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-helmet": "^5.2.1",
"react-virtualized": "^9.22.5",
"rrule": "^2.6.8",
"sharp": "^0.29.3",
"tsc-files": "^1.1.3",
"uuid": "^8.3.2",
"web-push": "^3.4.5",
"xml": "^1.0.1"
},
"devDependencies": {
"@dcl/eslint-config": "^1.0.6",
"@types/apicache": "^1.6.0",
"@types/express": "^4.17.3",
"@types/express-fileupload": "^1.1.7",
"@types/html-escaper": "^3.0.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.17.0",
"@types/react": "^17.0.34",
"@types/react-helmet": "^5.0.15",
"@types/validator": "^13.6.3",
"@types/web-push": "^3.3.2",
"@types/xml": "^1.0.5",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"concurrently": "^7.2.1",
"devcert": "^1.1.2",
"dotenv": "^8.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-import-resolver-jest": "^3.0.2",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-autofix": "^1.1.0",
"eslint-plugin-css-import-order": "^1.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"http-proxy-middleware": "^2.0.6",
"husky": "^7.0.4",
"jest": "^29.5.0",
"lint-staged": "12.3.8",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.8.0",
"typescript": "^4.7.2",
"workbox-cli": "^6.5.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "npm run build:server && npm run build:front",
"build:server": "tsc -p .",
"build:front": "gatsby build",
"build:sw": "workbox generateSW workbox-config.js",
"develop": "gatsby develop --https -H 0.0.0.0",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,json,md,mdx,css}'",
"start": "concurrently -c green,blue -n express,gatsby 'npm run serve' 'npm run develop'",
"serve": "DOTENV_CONFIG_PATH=.env.development nodemon --watch src/entities --watch src/server.ts -e ts,json --exec 'ts-node -r dotenv/config' src/server",
"clean": "gatsby clean",
"migrate": "./node_modules/.bin/node-pg-migrate --envPath ./.env.development --tsconfig ./tsconfig.json -j ts -m ./src/migrations -d CONNECTION_STRING",
"test": "jest",
"husky-setup": "husky install",
"precommit": "lint-staged --config .husky/pre-commit.js",
"lint": "eslint --ext .ts,.tsx,.js,.jsx ./src",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}