-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.37 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
{
"name": "react-hydration-overlay",
"version": "0.1.2",
"description": "React Htdration Overlay",
"main": "lib/index.js",
"module": "lib/index.js",
"type": "commonjs",
"types": "lib/index.d.ts",
"scripts": {
"test": "tap test/**/*.test.ts --disable-coverage",
"test:coverage": "tap test/**/*.test.ts",
"build": "npm run clean && tsc && npm run webpack",
"clean": "rm -rf lib",
"webpack": "webpack",
"linter:fix": "eslint . --fix --ext .ts",
"linter": "eslint . --ext .ts",
"format": "prettier --write .",
"lint": "npm run format && npm run linter",
"doc:markdown": "typedoc --plugin typedoc-plugin-missing-exports --plugin typedoc-plugin-markdown --out markdown",
"doc:html": "typedoc --plugin typedoc-plugin-missing-exports",
"doc": "npm run doc:markdown && npm run doc:html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karankraina/react-hydration-overlay.git"
},
"keywords": [
"nodejs",
"vm",
"sandbox",
"context"
],
"author": "Karan Raina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/karankraina/react-hydration-overlay/issues"
},
"homepage": "https://github.com/karankraina/react-hydration-overlay#readme",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@monaco-editor/react": "^4.6.0",
"@types/css-modules": "^1.0.5",
"@types/js-beautify": "^1.14.3",
"@types/node": "^20.13.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/tap": "^15.0.11",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-standard": "^5.0.0",
"js-beautify": "^1.15.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"style-loader": "^4.0.0",
"tap": "^19.0.2",
"ts-loader": "^9.5.1",
"typedoc": "^0.26.3",
"typedoc-plugin-markdown": "^4.1.1",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.5.3",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
}
}