|
1 | 1 | { |
2 | 2 | "name": "reactime", |
3 | 3 | "description": "build web extension bundle.js", |
| 4 | + "jest": { |
| 5 | + "transform": { |
| 6 | + ".(ts|tsx)": "ts-jest" |
| 7 | + }, |
| 8 | + "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$", |
| 9 | + "moduleFileExtensions": [ |
| 10 | + "ts", |
| 11 | + "tsx", |
| 12 | + "js" |
| 13 | + ] |
| 14 | + }, |
4 | 15 | "scripts": { |
5 | 16 | "build": "webpack --mode production", |
6 | 17 | "dev": "webpack --mode development --watch", |
|
44 | 55 | ], |
45 | 56 | "license": "ISC", |
46 | 57 | "devDependencies": { |
47 | | - "@babel/core": "^7.10.3", |
48 | | - "@babel/plugin-proposal-class-properties": "^7.5.5", |
49 | | - "@babel/plugin-proposal-decorators": "^7.4.4", |
50 | | - "@babel/preset-env": "^7.10.3", |
51 | | - "@babel/preset-react": "^7.0.0", |
52 | | - "babel-loader": "^8.0.6", |
| 58 | + "@babel/core": "^7.10.4", |
| 59 | + "@babel/plugin-proposal-class-properties": "^7.10.4", |
| 60 | + "@babel/plugin-proposal-decorators": "^7.10.4", |
| 61 | + "@babel/preset-env": "^7.10.4", |
| 62 | + "@babel/preset-react": "^7.10.4", |
| 63 | + "@types/chrome": "^0.0.119", |
| 64 | + "@types/jest": "^26.0.4", |
| 65 | + "@types/node": "^12.7.8", |
| 66 | + "babel-loader": "^8.1.0", |
53 | 67 | "core-js": "^3.6.5", |
54 | | - "css-loader": "^3.2.0", |
55 | | - "enzyme": "^3.10.0", |
56 | | - "enzyme-adapter-react-16": "^1.14.0", |
57 | | - "eslint": "^6.5.1", |
58 | | - "eslint-config-airbnb": "^18.0.1", |
59 | | - "eslint-plugin-import": "^2.18.2", |
60 | | - "eslint-plugin-jest": "^22.15.0", |
61 | | - "eslint-plugin-jsx-a11y": "^6.2.3", |
62 | | - "eslint-plugin-react": "^7.15.1", |
| 68 | + "css-loader": "^3.6.0", |
| 69 | + "enzyme": "^3.11.0", |
| 70 | + "enzyme-adapter-react-16": "^1.15.2", |
| 71 | + "eslint": "^6.8.0", |
| 72 | + "eslint-config-airbnb": "^18.2.0", |
| 73 | + "eslint-plugin-import": "^2.22.0", |
| 74 | + "eslint-plugin-jest": "^22.21.0", |
| 75 | + "eslint-plugin-jsx-a11y": "^6.3.1", |
| 76 | + "eslint-plugin-react": "^7.20.3", |
63 | 77 | "eslint-plugin-react-hooks": "^1.7.0", |
64 | 78 | "jest": "^24.9.0", |
65 | | - "jest-cli": "^24.8.0", |
66 | | - "jest-runner-eslint": "^0.7.4", |
67 | | - "node-sass": "^4.12.0", |
68 | | - "sass": "^1.22.9", |
69 | | - "sass-loader": "^7.2.0", |
| 79 | + "jest-cli": "^24.9.0", |
| 80 | + "jest-runner-eslint": "^0.7.7", |
| 81 | + "node-sass": "^4.14.1", |
| 82 | + "sass": "^1.26.10", |
| 83 | + "sass-loader": "^7.3.1", |
70 | 84 | "sinon-chrome": "^3.0.1", |
71 | 85 | "style-loader": "^0.23.1", |
| 86 | + "ts-jest": "^26.1.1", |
| 87 | + "ts-loader": "^7.0.5", |
| 88 | + "typescript": "^3.9.6", |
72 | 89 | "webpack": "^4.43.0", |
73 | 90 | "webpack-chrome-extension-reloader": "^1.3.0", |
74 | | - "webpack-cli": "^3.3.6" |
| 91 | + "webpack-cli": "^3.3.12" |
75 | 92 | }, |
76 | 93 | "dependencies": { |
77 | 94 | "bower": "^1.8.8", |
78 | 95 | "d3": "^5.16.0", |
79 | 96 | "d3-zoom": "^1.8.3", |
80 | | - "flatted": "^3.0.2", |
81 | | - "immer": "^3.2.0", |
| 97 | + "flatted": "^3.0.4", |
| 98 | + "immer": "^3.3.0", |
82 | 99 | "jest-runner": "^24.9.0", |
83 | 100 | "jsondiffpatch": "^0.3.11", |
84 | 101 | "prop-types": "^15.7.2", |
85 | | - "rc-slider": "^8.6.13", |
| 102 | + "rc-slider": "^8.7.1", |
86 | 103 | "rc-tooltip": "^3.7.3", |
87 | | - "react": "^16.9.0", |
88 | | - "react-dom": "^16.9.0", |
| 104 | + "react": "^16.13.1", |
| 105 | + "react-dom": "^16.13.1", |
89 | 106 | "react-html-parser": "^2.0.2", |
90 | 107 | "react-json-tree": "^0.11.2", |
91 | | - "react-router-dom": "^5.0.1", |
92 | | - "react-select": "^3.0.4" |
| 108 | + "react-router-dom": "^5.2.0", |
| 109 | + "react-select": "^3.1.0" |
93 | 110 | } |
94 | 111 | } |
0 commit comments