This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
forked from pierpo/react-archer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.87 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
{
"name": "react-archer",
"description": "Draw arrows between DOM elements in React",
"main": "lib/react-archer.js",
"module": "lib/react-archer.js",
"types": "types/react-archer.d.ts",
"version": "3.2.1",
"license": "MIT",
"dependencies": {
"react-fast-compare": "^2.0.4",
"resize-observer-polyfill": "1.5.0"
},
"homepage": "https://github.com/pierpo/react-archer",
"repository": {
"type": "git",
"url": "https://github.com/pierpo/react-archer"
},
"bugs": {
"url": "https://github.com/pierpo/react-archer/issues"
},
"scripts": {
"build": "webpack --config webpack.prod.config.js",
"deploy:example": "webpack --config webpack.example-app.config.js && gh-pages -d example-dist",
"pretest": "yarn lint && yarn flow",
"prepare": "npm run build",
"lint": "eslint --ext .js,.jsx src/ example/",
"start": "webpack-dev-server --hot --progress --colors --config ./webpack.config.js",
"test:e2e": "cypress open",
"test:e2e:update-snapshots": "rm -rf ./cypress/snapshots",
"test:watch": "jest ./src/ --watch",
"test": "jest --coverage ./src/"
},
"peerDependencies": {
"@types/react": "^16.8.8",
"prop-types": "^15.6.2",
"react": "^16.9.0 || ^17"
},
"devDependencies": {
"@babel/core": "7.6.2",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "7.6.2",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "10.0.3",
"babel-jest": "24.9.0",
"babel-loader": "8.0.6",
"cross-env": "6.0.3",
"css-loader": "3.2.0",
"cypress": "3.4.1",
"cypress-image-snapshot": "3.1.1",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"eslint": "6.5.1",
"eslint-config-prettier": "6.4.0",
"eslint-config-standard": "14.1.0",
"eslint-config-standard-react": "9.2.0",
"eslint-plugin-cypress": "2.7.0",
"eslint-plugin-flowtype": "4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-standard": "^4.0.1",
"flow-bin": "0.138.0",
"gh-pages": "2.0.1",
"html-webpack-plugin": "3.2.0",
"jest": "24.9.0",
"prettier": "1.18.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-test-renderer": "16.9.0",
"release-it": "12.4.3",
"style-loader": "1.0.0",
"terser-webpack-plugin": "^2.1.2",
"webpack": "4.41.0",
"webpack-cli": "3.3.9",
"webpack-dev-server": "3.8.2"
},
"jest": {
"collectCoverage": false,
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"setupFiles": [
"./shim.js",
"./setup-tests.js"
]
}
}