-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.97 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
{
"name": "react-web-utility",
"version": "1.0.4",
"description": "Web utility, provides loader, modal and many other utility for web for react project",
"main": "build/",
"size-limit": [
{
"path": "build/"
}
],
"scripts": {
"size": "size-limit",
"build-css": "node-sass-chokidar --include-path ./src src/ -o src/",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development",
"transpile": "npm run build-css && babel src -d build --copy-files",
"prepublishOnly": "npm run transpile",
"build": "webpack --mode production",
"deploy": "gh-pages -d examples/build",
"publish-demo": "npm run build && npm run deploy"
},
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"node-sass-chokidar": "^1.3.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"size-limit": "^0.18.5",
"style-loader": "^0.21.0",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@atlaskit/flag": "^9.0.1",
"@atlaskit/tooltip": "^12.0.1",
"babel-preset-stage-0": "^6.24.1",
"common-js-util": "^0.1.14",
"lodash": "^4.17.10",
"react-toastify": "^4.1.0",
"reactstrap": "^6.3.0",
"storage-utility": "0.0.16",
"styled-components": "^5.2.3"
}
}