-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 3.04 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
{
"name": "decentraland-ui2",
"version": "0.0.0-development",
"description": "Decentraland's UI components and styles",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Decentraland",
"license": "Apache-2.0",
"scripts": {
"test": "jest",
"fix:prettier": "prettier --write ./src",
"start": "storybook dev -p 6006",
"build": "npm run build:dist",
"build:dist": "rm -Rf dist && tsc && cp -R src/theme/fonts dist/theme/fonts && cp -R src/Assets dist/Assets",
"build-storybook": "npx storybook@7 build",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,json,md,mdx,css}'",
"lint": "eslint --ext .ts,.tsx,.js,.jsx ./src",
"lint:check": "eslint --ext .ts,.tsx,.js,.jsx ./src",
"lint:fix": "npm run lint -- --fix",
"generate:storybooks": "ts-node ./bin/storybookGenerator.ts && npm run lint:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decentraland/ui2.git"
},
"keywords": [
"decentraland",
"ui",
"react",
"material-ui",
"components",
"styles",
"themes"
],
"bugs": {
"url": "https://github.com/decentraland/ui2/issues"
},
"homepage": "https://github.com/decentraland/ui2#readme",
"dependencies": {
"@contentful/rich-text-react-renderer": "^16.0.1",
"@dcl/schemas": "^15.6.0",
"@dcl/ui-env": "^1.5.1",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.16.0",
"@mui/material": "^5.16.0",
"autoprefixer": "^10.4.19",
"date-fns": "^3.6.0",
"ethereum-blockies": "^0.1.1",
"radash": "^11.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-tile-map": "^0.4.1"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@contentful/rich-text-types": "^17.0.0",
"@dcl/eslint-config": "^2.2.1",
"@storybook/addon-docs": "^7.6.20",
"@storybook/addon-essentials": "^7.6.20",
"@storybook/addon-links": "^7.6.20",
"@storybook/addon-storysource": "^7.6.20",
"@storybook/addon-themes": "^7.6.20",
"@storybook/blocks": "^7.6.20",
"@storybook/react": "^7.6.20",
"@storybook/react-webpack5": "^7.6.20",
"@storybook/testing-library": "^0.2.2",
"@types/jest": "^29.5.12",
"@types/react": "^17.0.80",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-import-resolver-jest": "^3.0.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-autofix": "^1.1.0",
"eslint-plugin-css-import-order": "^1.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-storybook": "^0.8.0",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"storybook": "^7.6.20",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"files": [
"dist"
]
}