-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
141 lines (141 loc) · 4.5 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@nion/nion",
"version": "3.8.0",
"license": "MIT",
"browser": "./es/index.js",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"sideEffects": false,
"files": [
"/es",
"!/es/**/*.test.js",
"/lib",
"!/lib/**/*.test.js",
"types/index.d.ts"
],
"eslintConfig": {
"globals": {
"window": true,
"document": true
}
},
"dependencies": {
"@babel/runtime-corejs3": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"core-js": "^3.2.1",
"deep-equal": "^1.0.1",
"humps": "^2.0.1",
"is-equal-shallow": "^0.1.3",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.20",
"reselect": "^3.0.1",
"seamless-immutable": "^7.1.2",
"url": "^0.11.0"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.8.0",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-react-hook": "^3.3.1"
},
"scripts": {
"build": "npm run build:lib && npm run build:es",
"build:watch": "npm run build:es -- --watch",
"build:lib:watch": "npm run build:lib -- --watch",
"build:es:watch": "npm run build:es -- --watch",
"prebuild": "rimraf lib/*",
"prepublishOnly": "npm run build",
"build:lib": "babel --out-dir lib src",
"build:es": "NODE_ENV=es babel --out-dir es src",
"prebuild:watch": "rimraf lib/* & rimraf es/*",
"lint": "eslint --report-unused-disable-directives --ext .js,.jsx,.ts,.tsx ./",
"lint:fix": "npm run lint -- --fix",
"test": "NODE_ENV=test jest",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"format:ci": "prettier --check \"**/*.{js,jsx,ts,tsx}\"",
"typecheck": "tsd"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@testing-library/dom": "^8.11.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^5.1.0",
"@testing-library/user-event": "^14.3.0",
"@types/react": "^16.9.11",
"async": "^2.5.0",
"babel-jest": "^29.1.2",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-react-prefer-function-component": "^3.0.0",
"eslint-plugin-testing-library": "^6.1.2",
"install": "^0.10.1",
"jest": "^24.9.0",
"nock": "^13.3.2",
"prettier": "^2.8.7",
"prop-types": "^15.6.0",
"react": "^16.8.0",
"react-dom": "^16.8.5",
"react-redux": "^6.0.1",
"react-test-renderer": "^16.8.5",
"recompose": "^0.25.0",
"redux": "^4.0.1",
"redux-mock-store": "^1.3.0",
"redux-react-hook": "^3.3.1",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.1",
"tsd": "^0.31.1",
"typescript": "^3.7.2"
},
"jest": {
"automock": false,
"verbose": true,
"testMatch": [
"**/src/**/__tests__/**/*.[jt]s?(x)",
"**/src/**/?(*.)+(spec|test).[jt]s?(x)",
"**/test/**?(*.)+(spec|test).[jt]s?(x)"
],
"transform": {
"\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"collectCoverageFrom": [
"src/**/*.js"
]
}
}