-
Notifications
You must be signed in to change notification settings - Fork 176
/
package.json
102 lines (102 loc) · 3.17 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
{
"name": "beautiful-react-diagrams",
"version": "0.5.1",
"description": "A tiny collection of lightweight React components to build diagrams with ease",
"main": "index.js",
"module": "esm/index.js",
"typings": "index.d.ts",
"scripts": {
"build": "npx del-cli dist && rollup -c",
"build-doc": "npx styleguidist build --config docs/setup/styleguidist.config.js",
"start": "styleguidist server --config docs/setup/styleguidist.config.js",
"lint-js": "eslint --ext .jsx,.js src/",
"lint-tests": "eslint --ext .jsx,.js tests/",
"lint-scss": "stylelint '**/*.scss'",
"lint": "npm run lint-js && npm run lint-tests && npm run lint-scss",
"test": "nyc mocha --recursive --exit \"./tests/**/*.spec.+(js|jsx)\"",
"test-types": "npx tsc -p . --noEmit"
},
"browserslist": [
"> 0.25%",
"not dead"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/antonioru/beautiful-react-diagrams.git"
},
"author": {
"name": "Antonio Russo",
"email": "[email protected]"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@babel/register": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^9.0.0",
"@testing-library/react": "^11.1.0",
"@types/react": "^16.9.53",
"autoprefixer": "9.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"beautiful-react-ui": "^0.56.14",
"chai": "^4.2.0",
"css-loader": "^5.0.0",
"del": "^6.0.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"glob": "^7.1.6",
"husky": "^4.3.0",
"ignore-styles": "^5.0.1",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^1.1.1",
"mocha": "^8.2.0",
"node-sass": "^4.14.1",
"nyc": "^15.1.0",
"postcss": "^8.1.2",
"postcss-fixes": "^2.0.1",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-will-change": "3.0.0",
"postcss-will-change-transition": "^1.2.0",
"react": "^16.14.0",
"react-dom": "^16.12.0",
"react-styleguidist": "^11.1.0",
"rollup": "^2.32.1",
"rollup-plugin-postcss": "^3.1.8",
"sass": "^1.27.0",
"sass-loader": "^10.0.3",
"sinon": "^9.2.0",
"stylelint": "^13.7.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"typescript": "4.0.5",
"url-loader": "^4.1.1",
"webpack": "4.44.0",
"webpack-cli": "4.1.0"
},
"dependencies": {
"beautiful-react-hooks": "^0.31.0",
"classnames": "^2.2.6",
"lodash.findindex": "^4.6.0",
"lodash.isequal": "^4.5.0",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": ">=16.14.0",
"react-dom": ">=16.12.0"
}
}