-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.92 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.92 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "koldy-ui",
"version": "0.4.1",
"description": "Koldy UI - React UI component library",
"main": "lib/index.js",
"module": "esm/index.js",
"sideEffects": false,
"scripts": {
"test": "jest --silent",
"dev": "webpack-dev-server --config webpack.config.development.js",
"build-docs": "rm -rf ./dist && webpack --config webpack.config.docs.js",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "babel --delete-dir-on-start --env-name esm -d esm/ src/ --ignore \"./src/docs.js\",\"./src/**/*.test.js\",\"./src/**/*.docs.js\"",
"build:cjs": "babel --delete-dir-on-start --env-name cjs -d lib/ src/ --ignore \"./src/docs.js\",\"./src/**/*.test.js\",\"./src/**/*.docs.js\"",
"prepublishOnly": "npm run test && npm run build",
"lint": "eslint ./src --ignore-pattern *.docs.js --ignore-pattern *.test.js"
},
"author": "Vlatko Koudela",
"license": "MIT",
"bugs": {
"url": "https://github.com/koldy/ui/issues"
},
"homepage": "https://koldy.io",
"repository": {
"type": "git",
"url": "https://github.com/koldy/ui.git"
},
"peerDependencies": {
"@popperjs/core": "^2.6.0",
"core-js": "^3.6.5",
"prop-types": "^15.7.2 || ^16.0.0",
"react": "^16.14.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.14.0 || ^17.0.0 || ^18.0.0",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.9",
"@babel/preset-react": "^7.12.13",
"@popperjs/core": "^2.8.6",
"acorn": "^8.0.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-prismjs": "^2.0.1",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-styled-components": "^1.12.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.9.1",
"css-loader": "^5.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"http-proxy": "^1.18.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"prismjs": "^1.23.0",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hot-loader": "^4.13.0",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^16.14.0",
"react-use": "^15.3.8",
"styled-components": "^5.2.1",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"files": [
"lib/*",
"esm/*"
],
"dependencies": {
"date-fns": "^2.18.0"
}
}