forked from TobitSoftware/chayns-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.82 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
{
"name": "chayns-components",
"version": "4.16.2",
"description": "Some react components for chayns®",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "lib_esnext/index.js",
"scripts": {
"start": "node ./examples/utils/generateReactList && concurrently --kill-others \"npm run watch:sass\" \"npm run webpack\"",
"prepublishOnly": "npm run eslint & npm run build",
"clean": "",
"build": "npm run build:sass && npm run build:es && npm run build:cjs && npm run build:lib:es",
"build:es": "cross-env NODE_ENV=es rollup -c",
"build:cjs": "cross-env NODE_ENV=cjs rollup -c",
"build:lib:es": "cross-env BABEL_ENV=es babel src -d lib",
"build:sass": "node-sass src/ -o ./src && node-sass src/ -o ./lib",
"build:examples": "npm run build:sass && node ./examples/utils/generateReactList && webpack --config ./webpack/dev.babel.js --env.prod",
"build:md": "node ./examples/utils/generateMarkdownList",
"eslint": "./node_modules/.bin/eslint src --ext .jsx --ext .js",
"watch": "concurrently --kill-others \"npm run watch:sass\" \"npm run watch:js\"",
"watch:js": "babel -w src/ --out-dir lib/",
"watch:sass": "npm run build:sass && node-sass src/ -o ./src -w",
"webpack": "webpack-dev-server --config ./webpack/dev.babel.js",
"dev": "npm link && npm run watch"
},
"author": "Tobit.Software",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TobitSoftware/chayns-components.git"
},
"keywords": [
"react",
"tobit",
"chayns"
],
"homepage": "https://de.tobit.software/",
"bugs": "https://github.com/TobitSoftware/chayns-components/issues",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.3",
"@types/googlemaps": "^3.39.2",
"babel-eslint": "10.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-optimize-clsx": "^2.5.0",
"babel-plugin-transform-imports": "^2.0.0",
"babel-plugin-transform-rename-import": "^2.3.0",
"cross-env": "^5.2.1",
"css-loader": "3.2.0",
"eslint": "6.1.0",
"eslint-config-airbnb": "17.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "^7.18.3",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.1",
"postcss": "^7.0.26",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-hot-loader": "^4.12.19",
"rollup": "^1.31.1",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^2.0.6",
"rollup-plugin-scss": "^1.0.2",
"sass-loader": "7.1.0",
"style-loader": "1.0.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"why-did-you-update": "^1.0.6"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/react-fontawesome": "0.1.4",
"abortcontroller-polyfill": "^1.4.0",
"babel-regenerator-runtime": "^6.5.0",
"classnames": "^2.2.6",
"concurrently": "^4.1.2",
"coordinate-parser": "^1.0.3",
"eslint-config-airbnb-base": "^14.0.0",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.0.0",
"react-resize-detector": "^4.2.1",
"react-transition-group": "4.2.1"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"optionalDependencies": {
"emojione": "^3.1.7"
}
}