-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.39 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
{
"name": "@arcadia-eng/connect-react",
"version": "7.2.0",
"description": "React package for implementing Arc Connect",
"main": "dist/index.js",
"scripts": {
"docz:dev": "./node_modules/.bin/docz dev",
"docz:build": "./node_modules/.bin/docz build",
"docz:serve": "./node_modules/.bin/docz build && ./node_modules/.bin/docz serve",
"build": "./node_modules/.bin/webpack",
"lint": "./node_modules/.bin/eslint . --ext .js,.jsx",
"test": "./node_modules/.bin/jest",
"test:coverage": "./node_modules/.bin/jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arcadiapower/connect-react.git"
},
"keywords": [
"Arcadia"
],
"author": "Arcadia",
"license": "ISC",
"bugs": {
"url": "https://github.com/arcadiapower/connect-react/issues"
},
"homepage": "https://github.com/arcadiapower/connect-react#readme",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@testing-library/jest-dom": "^5.13.0",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^7.0.0",
"@testing-library/user-event": "^13.1.9",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.3",
"prettier": "^2.2.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"webpack": "^5.77.0",
"webpack-cli": "^4.3.1"
},
"peerDependencies": {
"react": "^16.14.0 || 17 - 18",
"react-dom": "^16.14.0 || 17 - 18"
},
"dependencies": {
"prop-types": "^15.7.2",
"react-script-hook": "^1.7.2"
},
"jest": {
"coveragePathIgnorePatterns": [
"<rootDir>/test/"
],
"modulePaths": [
"src",
"test"
],
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.js"
],
"testEnvironment": "jsdom"
}
}