-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.65 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.65 KB
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
{
"name": "react-customizable-carousel",
"version": "0.1.1",
"main": "./lib/index.js",
"module": "./es/index.js",
"style": "./styles/index.css",
"repository": {
"type": "git",
"url": "https://github.com/BF-man/react-customizable-carousel"
},
"author": "Bubnov Artem (https://github.com/BF-man)",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server --hot --port=8080 --output-public-path=http://localhost:8080/ --config ./webpack.config.js --mode=development",
"build": "yarn clearall && yarn build:lib && yarn build:es && yarn build:lib:css && yarn build:es:css",
"build:lib": "babel src --out-dir lib --copy-files",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --copy-files",
"build:es:css": "postcss src/*.css --output es/index.css --config postcss.config.js",
"build:lib:css": "postcss src/*.css --output lib/index.css --config postcss.config.js",
"demo": "webpack --config ./webpack.config.js --mode=production",
"clearall": "rimraf dist styles lib es demo"
},
"files": [
"es",
"lib",
"styles",
"README.md"
],
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"dependencies": {
"react-measure": "^2.2.5"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.0.0-beta.55",
"autoprefixer": "^9.5.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-loader": "8.0.5",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^3.0.1",
"glob": "^7.1.1",
"html-webpack-plugin": "^3.2.0",
"normalize.css": "^5.0.0",
"postcss": "^7.0.14",
"postcss-cli": "^6.1.2",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.1.2",
"postcss-nested-ancestors": "^2.0.0",
"postcss-preset-env": "^6.6.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-icons": "^2.2.5",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
}
}