UNPKG

3.31 kBJSONView Raw
1{
2 "name": "reactotron-react-js",
3 "version": "3.3.14",
4 "description": "A development tool to explore, inspect, and diagnose your React JS/DOM apps.",
5 "author": "Infinite Red",
6 "license": "MIT",
7 "bugs": {
8 "url": "https://github.com/infinitered/reactotron/issues"
9 },
10 "homepage": "https://github.com/infinitered/reactotron/tree/master/lib/reactotron-react-js",
11 "repository": "https://github.com/infinitered/reactotron/tree/master/lib/reactotron-react-js",
12 "files": [
13 "dist",
14 "src"
15 ],
16 "main": "dist/index.js",
17 "module": "dist/index.esm.js",
18 "types": "dist/types/src/index.d.ts",
19 "react-native": "src/index.ts",
20 "exports": {
21 "import": "./dist/index.esm.js",
22 "types": "./dist/types/src/index.d.ts",
23 "react-native": "./src/index.ts",
24 "default": "./dist/index.js"
25 },
26 "scripts": {
27 "test": "jest",
28 "test:watch": "jest --watch --notify",
29 "format": "prettier '*.{js,ts,tsx,json,css,yml}|**/*.{js,ts,tsx,json,css,yml}'",
30 "format:check": "yarn format --check",
31 "format:write": "yarn format --write",
32 "build": "npm-run-all clean tsc compile",
33 "build:dev": "npm-run-all clean tsc compile:dev",
34 "clean": "rimraf ./dist",
35 "lint": "eslint src --ext .ts,.tsx",
36 "compile": "NODE_ENV=production rollup -c",
37 "compile:dev": "NODE_ENV=development rollup -c",
38 "tsc": "tsc",
39 "typecheck": "yarn tsc",
40 "ci:lint": "yarn lint",
41 "ci:test": "yarn test --runInBand"
42 },
43 "dependencies": {
44 "reactotron-core-client": "2.9.3",
45 "stacktrace-js": "2.0.1"
46 },
47 "devDependencies": {
48 "@babel/core": "^7.23.2",
49 "@babel/plugin-proposal-class-properties": "^7.18.6",
50 "@babel/preset-env": "^7.23.2",
51 "@babel/preset-typescript": "^7.23.2",
52 "@types/react": "18.2.45",
53 "@typescript-eslint/eslint-plugin": "^6.7.5",
54 "@typescript-eslint/parser": "^6.7.5",
55 "babel-eslint": "^10.1.0",
56 "babel-jest": "^29.7.0",
57 "eslint": "^8.53.0",
58 "eslint-config-prettier": "^9.0.0",
59 "eslint-config-standard": "^17.1.0",
60 "eslint-plugin-import": "^2.29.0",
61 "eslint-plugin-n": "^16.2.0",
62 "eslint-plugin-promise": "6.1.1",
63 "eslint-plugin-standard": "5.0.0",
64 "jest": "^29.7.0",
65 "npm-run-all": "4.1.5",
66 "prettier": "^3.0.3",
67 "rollup": "2.60.2",
68 "rollup-plugin-babel": "4.4.0",
69 "rollup-plugin-babel-minify": "10.0.0",
70 "rollup-plugin-filesize": "9.1.1",
71 "rollup-plugin-node-resolve": "5.2.0",
72 "rollup-plugin-replace": "2.2.0",
73 "rollup-plugin-resolve": "0.0.1-predev.1",
74 "ts-jest": "^29.1.1",
75 "typescript": "^4.9.5"
76 },
77 "eslintConfig": {
78 "root": false,
79 "extends": [
80 "plugin:react/recommended"
81 ],
82 "plugins": [
83 "react",
84 "react-hooks"
85 ],
86 "settings": {
87 "react": {
88 "version": "detect"
89 }
90 },
91 "parserOptions": {
92 "ecmaFeatures": {
93 "jsx": true
94 }
95 },
96 "globals": {
97 "__DEV__": false,
98 "jasmine": false,
99 "beforeAll": false,
100 "afterAll": false,
101 "beforeEach": false,
102 "afterEach": false,
103 "test": false,
104 "expect": false,
105 "describe": false,
106 "jest": false,
107 "it": false
108 }
109 },
110 "jest": {
111 "preset": "ts-jest",
112 "testEnvironment": "node",
113 "testMatch": [
114 "**/*.test.ts"
115 ]
116 }
117}
\No newline at end of file