forked from decentraland/explorer-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.63 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
{
"name": "@dcl/explorer-website",
"version": "0.1.0",
"private": true,
"homepage": "",
"scripts": {
"preinstall": "cd ../unity-renderer/browser-interface && npm install",
"postinstall": "node ./scripts/hash_generator.js",
"start": "react-app-rewired start",
"start:production:ci": "npx --yes serve -s ./build",
"start:production:localhost": "serve -s ./build",
"start:build:production": "npm run copy:unity:node_modules && npm run start:production:localhost",
"start:linked": "cross-env NODE_ENV=development react-app-rewired --openssl-legacy-provider start",
"build": "cross-env NODE_ENV=production GENERATE_SOURCEMAP=true react-app-rewired --openssl-legacy-provider build",
"prebuild-unity:compile": "rimraf ../unity-renderer/Builds && shx cp -r ../Builds ../unity-renderer",
"build-unity:compile": "cd ../unity-renderer/browser-interface && npm run build && cd ../../explorer-website && npm run copy:unity:static && npm run build",
"build-unity:pre-compiled": "npm run copy:unity:node_modules && npm run build",
"copy:unity:node_modules": "shx cp -r ./node_modules/@dcl/explorer/* ./public/unity-engine",
"copy:unity:static": "shx mkdir -p ./build ./public/unity-engine && shx cp -r ../unity-renderer/browser-interface/static/* ./public/unity-engine",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"copy-cdn": "node ./scripts/copy_cdn.js",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "none"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@dcl/explorer": "^1.0.131583-20230718133624.commit-7106e1f",
"@dcl/feature-flags": "^1.2.0",
"@dcl/kernel-interface": "^2.0.0-20230512115658.commit-b582e05",
"@dcl/schemas": "^8.1.0",
"@dcl/urn-resolver": "^1.4.0",
"@sentry/browser": "^7.45.0",
"@sentry/tracing": "^7.45.0",
"@types/validator": "^13.7.3",
"cross-env": "7.0.3",
"decentraland-connect": "^4.1.3",
"decentraland-dapps": "^15.5.0",
"decentraland-ui": "^4.1.0",
"detect-browser": "^5.2.0",
"dotenv": "16.3.1",
"eth-connect": "^6.1.0",
"md5-file": "^5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.9",
"react-scripts": "^4.0.3",
"react-virtualized": "^9.22.5",
"redux": "^4.0.5",
"shx": "0.3.4",
"validator": "^13.7.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/addon-storyshots": "^6.5.13",
"@storybook/node-logger": "^6.5.13",
"@storybook/preset-create-react-app": "^3.1.4",
"@storybook/react": "^6.5.13",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^17.0.52",
"@types/react-dom": "^17.0.18",
"@types/react-redux": "^7.1.9",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"babel-loader": "^8.1.0",
"customize-cra": "^1.0.0",
"fs-extra": "^10.0.0",
"react-app-rewired": "^2.2.1",
"react-is": "^17.0.2",
"react-test-renderer": "^17.0.2",
"redux-devtools-extension": "^2.13.8",
"serve": "14.2.1",
"typescript": "^4.5.5"
}
}