-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
127 lines (127 loc) · 4 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
122
123
124
125
126
127
{
"name": "decentraland-ui",
"version": "0.0.0-development",
"description": "Decentraland's UI components and styles",
"main": "lib/index.js",
"module": "dist/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "jest",
"start": "node --openssl-legacy-provider ./node_modules/.bin/start-storybook -p 6006",
"build": "npm run build:lib && npm run build:dist ",
"build:lib": "rimraf lib && node --openssl-legacy-provider ./node_modules/.bin/webpack --config webpack.config.js",
"build:storybook": "node --openssl-legacy-provider ./node_modules/.bin/build-storybook && cp ./static/* ./storybook-static && node postbuild",
"build:dist": "rimraf dist && tsc -p . -d --outDir dist --declarationDir dist --sourceMap false --skipLibCheck && postcss --base src --dir dist 'src/**/*.css'",
"check:prettier": "prettier -c 'src/**/*.{js,ts,json,yml,md,tsx,html,css}'",
"check:code": "eslint . --max-warnings=0",
"fix:code": "npm run check:code -- --fix",
"fix:prettier": "prettier --write ./src",
"now-build": "build-storybook && cp ./static/* ./storybook-static && mv ./storybook-static ./public",
"semantic-release": "semantic-release",
"commitmsg": "validate-commit-msg"
},
"repository": {
"type": "git",
"url": "https://github.com/decentraland/ui.git"
},
"keywords": [
"decentraland",
"ui",
"react",
"semantic-ui",
"components",
"styles",
"themes"
],
"author": "Decentraland",
"license": "MIT",
"bugs": {
"url": "https://github.com/decentraland/ui/issues"
},
"homepage": "https://github.com/decentraland/ui#readme",
"devDependencies": {
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-storysource": "^6.5.16",
"@storybook/builder-webpack4": "^6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/source-loader": "^6.5.16",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^12.1.5",
"@types/deep-equal": "^1.0.1",
"@types/jest": "^28.1.3",
"@types/react": "^16.4.1",
"@types/react-test-renderer": "^16.0.1",
"@typescript-eslint/eslint-plugin": "4.26.0",
"@typescript-eslint/parser": "4.26.0",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.3.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "7.28.0",
"eslint-config-prettier": "8.3.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"mini-css-extract-plugin": "^0.7.0",
"postcss": "^8.4.32",
"postcss-assets": "^5.0.0",
"postcss-cli": "^7.1.2",
"postcss-copy": "^7.1.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"postcss-svg": "^3.0.0",
"prettier": "^2.3.1",
"rimraf": "^2.7.1",
"semantic-release": "^15.13.24",
"storybook": "^6.5.16",
"style-loader": "^0.23.1",
"ts-jest": "^28.0.8",
"ts-loader": "^6.0.2",
"typescript": "^4.6.4",
"url-loader": "^2.0.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2"
},
"dependencies": {
"@dcl/schemas": "^13.9.0",
"@dcl/ui-env": "^1.5.1",
"balloon-css": "^0.5.0",
"classnames": "^2.3.2",
"dayjs": "^1.11.10",
"deep-equal": "^2.0.5",
"ethereum-blockies": "^0.1.1",
"events": "^3.3.0",
"fp-future": "^1.0.1",
"mitt": "^3.0.1",
"parallax-js": "^3.1.0",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0",
"react-responsive": "^9.0.0-beta.3",
"react-semantic-ui-datepickers": "^2.17.2",
"react-tile-map": "^0.4.1",
"recharts": "^2.3.2",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"uuid": "^9.0.1"
},
"engines": {
"node": "18"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"publishConfig": {
"provenance": true
}
}