-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.72 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
{
"name": "@shoutem/react-web-ui",
"version": "1.0.6",
"description": "React UI kit for Shoutem extensions",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "npm run build-dist && npm run build-lib",
"clean-dist": "rimraf ./dist/*",
"clean-lib": "rimraf ./lib/*",
"build-dist": "npm run clean-dist && webpack --config ./bin/webpack.config.js",
"build-lib": "npm run clean-lib && babel src --out-dir lib --copy-files",
"release": "npm run build && npm publish --access public --tag latest",
"release-rc": "npm run build && npm publish --access public --tag rc",
"lint": "eslint src/**/*.{js,jsx} && eslint test/**/*.js"
},
"author": "Shoutem",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shoutem/react-web-ui"
},
"homepage": "https://github.com/shoutem/react-web-ui#readme",
"dependencies": {
"auto-bind": "4.0.0",
"bootstrap-sass": "3.4.3",
"classnames": "2.3.1",
"emoji-mart": "3.0.1",
"lodash": "4.17.21",
"moment": "2.29.4",
"prop-types": "15.8.1",
"react-bootstrap": "0.32.4",
"react-datetime": "2.16.3",
"react-debounce-input": "3.2.5",
"react-dnd": "2.6.0",
"react-dnd-html5-backend": "2.6.0",
"react-dropzone": "3.13.4",
"react-select": "1.3.0",
"suneditor": "2.44.2",
"suneditor-react": "3.4.1",
"unsplash-js": "7.0.15"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.5",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@shoutem/eslint-config-react": "~1.0.2",
"babel-eslint": "10.1.0",
"babel-plugin-lodash": "3.3.4",
"css-loader": "3.6.0",
"cssnano": "4.1.11",
"eslint": "6.8.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-flow-vars": "0.4.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.29.2",
"eslint-plugin-react-hooks": "4.3.0",
"file-loader": "5.1.0",
"mini-css-extract-plugin": "0.9.0",
"postcss-loader": "3.0.0",
"prettier": "1.19.1",
"rimraf": "2.7.1",
"sass": "1.54.1",
"sass-loader": "8.0.2",
"style-loader": "1.3.0",
"urijs": "1.19.11",
"url-loader": "3.0.0",
"webpack": "4.46.0",
"webpack-cli": "4.9.2"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"lodash",
"@babel/plugin-transform-runtime",
"@babel/plugin-proposal-class-properties"
]
}
}