-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
71 lines (71 loc) · 2.4 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
{
"name": "ui-predicate-react",
"version": "1.1.0",
"description": "Finally a predicate UI component for ReactJS",
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"browser": "build/index.js",
"style": "build/index.css",
"files": [
"build"
],
"author": "Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com/)",
"contributors": [
"Romain Baumier <[email protected]> (https://rbaumier.com/)"
],
"license": "MIT",
"scripts": {
"test": "true",
"lint": "eslint --fix getting-started src",
"build": "rollup -c",
"test:coverage": "true",
"docs:build": "npm run --silent docs:jsdoc:build && npm run --silent docs:storybook:build && npm run --silent docs:getting-started:build",
"docs:jsdoc:build": "jsdoc -c ../../jsdoc.json",
"docs:getting-started:start": "parcel serve ./getting-started/index.html",
"docs:getting-started:build": "parcel build --no-cache --public-url=./ --out-dir=../../docs/packages/$npm_package_name/$npm_package_version/getting-started getting-started/index.html",
"docs:storybook:watch": "start-storybook -p 9001",
"docs:storybook:build": "build-storybook --output-dir ../../docs/packages/$npm_package_name/$npm_package_version/examples"
},
"dependencies": {
"prop-types": "^15.7.2",
"ui-predicate-core": "^0.6.4"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addon-notes": "^5.3.21",
"@storybook/react": "^6.2.9",
"babel-loader": "^8.2.2",
"eslint": "^7.29.0",
"eslint-plugin-react": "^7.24.0",
"jsdoc": "^3.5.5",
"parcel-bundler": "^1.12.5",
"postcss": "^8.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.53.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-postcss": "^4.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17",
"react-dom": "^16.8.0 || ^17"
},
"targets": {
"browser": {
"engines": {
"browsers": "> 0.25%"
}
}
}
}