forked from gumgum/react-script-tag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.73 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
{
"name": "react-script-tag-18",
"author": "Ziping Liu <ziping@linkedinliu.com>",
"version": "5.2.1",
"description": "React Script Tag 18, updated a five year old package that had a very well written script loader tag utility for react, updating to now use TypeScript and React 18",
"license": "MIT",
"main": "lib/react-script-tag.js",
"umd:main": "lib/react-script-tag.umd.js",
"module": "lib/react-script-tag.m.js",
"types": "lib/index.d.ts",
"jsdelivr": "./lib/react-script-tag.umd.js",
"source": "src/ScriptTag/index.tsx",
"sideEffects": false,
"files": [
"package.json",
"README.md",
"lib"
],
"scripts": {
"build": "npm run build:rollup",
"build:tsc": "tsc",
"build:rollup": "rollup -c rollup.config.js",
"watch": "webpack --watch",
"test:watch": "jest --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zipingl/react-script-tag.git"
},
"keywords": [
"react",
"component",
"script",
"script tag loader",
"async",
"async lock",
"react 18",
"react 18 async lock",
"node js",
"typescript",
"typescript 4.9",
"react 18 typescript",
"script tag",
"react script component"
],
"devDependencies": {
"@babel/cli": "^7.20.*",
"@babel/core": "^7.20.*",
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
"@babel/plugin-transform-react-constant-elements": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.2",
"@babel/preset-stage-1": "^7.8.3",
"@babel/preset-typescript": "^7.18.6",
"@haensl/rollup-plugin-local-resolve": "^1.1.12",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.6",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@webpack-cli/generators": "^3.0.1",
"babel-loader": "^9.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-minify": "^0.4.3",
"babel-preset-react-app": "^10.0.1",
"bfj": "^7.0.2",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.0",
"eslint-webpack-plugin": "^3.2.0",
"jest": "^27.*",
"prettier": "^2.8.1",
"pretty-quick": "^1.6.0",
"prop-types": "^15.6.2",
"react": "^18.2.0",
"react-dev-utils": "^12.0.1",
"react-dom": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-dts": "^4.2.3",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"source-map-loader": "^4.0.1",
"terser": "^5.16.1",
"ts-jest": "^27.1.5",
"ts-loader": "^9.4.2",
"tslib": "^2.6.3",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"workbox-webpack-plugin": "^6.5.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}