-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 4.07 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
{
"name": "bluesquare-components",
"version": "1.0.0",
"description": "reusable UI components for Bluesquare apps",
"author": "Bluesquare",
"license": "Apache-2.0",
"main": "./dist/index.js",
"files": [
"dist"
],
"typings": "./dist/types",
"scripts": {
"fix-lint": "prettier-eslint \"./src/**/*.js\" --lint-different --write",
"show-lint-problems": "eslint \"./src/**/*.js\"",
"clean": "rm -rf dist",
"compile": "npm run clean && NODE_ENV=production babel src --out-dir dist --ignore './src/stories/*,./src/components/**/*.stories.js' --copy-files --no-copy-ignored",
"serve": "npm run clean && webpack --mode=production ",
"build-local": "npm run compile && npm pack",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BLSQ/bluesquare-components.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/BLSQ/bluesquare-components/issues"
},
"homepage": "https://github.com/BLSQ/bluesquare-components#readme",
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@date-io/moment": "^1.3.13",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.1.3",
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^2.5.4",
"fetch-mock": "^7.3.3",
"file-loader": "^6.2.0",
"html-entities": "~1.4.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^1.6.0",
"mocha": "^8.2.0",
"mock-require": "^3.0.3",
"nock": "^13.0.4",
"prettier": "2.3.0",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.0",
"raw-loader": "^4.0.2",
"sinon": "^9.2.1",
"source-map-loader": "^3.0.1",
"style-loader": "^2.0.0",
"video.js": "^7.10.2",
"webpack": "^5.0.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-node-externals": "^3.0.0"
},
"peerDependencies": {
"@mui/icons-material": "^5.14.15",
"@mui/lab": "^5.0.0-alpha.150",
"@mui/material": "^5.14.15",
"@mui/styles": "^5.14.15",
"@mui/x-date-pickers": "^5.0.0-beta.2",
"@mui/x-tree-view": "^6.0.0-beta.0",
"classnames": "^2.3.1",
"color": "^3.1.2",
"moment": "^2.20.1",
"prop-types": "^15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-dropzone": "^14.2.2",
"react-intl": "^5.10.16",
"react-query": "^3.34.12",
"react-table": "^7.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.2",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.0",
"@dnd-kit/sortable": "^7.0.1",
"@react-awesome-query-builder/mui": "^6.4.2",
"babel-plugin-formatjs": "^10.3.18",
"dayjs": "^1.11.10",
"install": "^0.13.0",
"material-ui-confirm": "^3.0.5",
"npm": "^9.1.2",
"react-intersection-observer": "^8.26.1",
"react-number-format": "^5.3.1",
"react-phone-input-material-ui": "^2.18.1",
"react-visibility-sensor": "^5.1.1",
"ts-loader": "^9.2.8"
}
}