-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
58 lines (58 loc) · 1.81 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
{
"name": "react-ridge-state",
"version": "4.2.9",
"description": "react-ridge-state is a very simple global state management library for React and React Native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/web-ridge/react-ridge-state",
"license": "MIT",
"readme": "README.md",
"scripts": {
"mocha": "mocha -r jsdom-global/register -r ts-node/register tests/**/*.mocha.tsx",
"test": "jest --maxWorkers=150",
"build": "tsc",
"lint": "eslint src tests",
"minify": "uglifyjs --compress --mangle --output dist/index.js -- dist/index.js"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@testing-library/react": "^12.1.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-jest": "^27.3.1",
"esbuild": "^0.13.12",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"expect.js": "^0.3.1",
"jest": "^27.3.1",
"jsdom": "^18.0.1",
"jsdom-global": "^3.0.2",
"mocha": "^9.1.3",
"mocha-jsdom": "^2.0.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"uglify-js": "^3.15.1",
"uglifyjs": "^2.4.11"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"jest": {
"testEnvironment": "jsdom"
}
}