-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"name": "webtask-canirequire",
"version": "1.0.0",
"description": "",
"main": "index.jsx",
"scripts": {
"dev": "concurrently 'http-server' 'gulp watch'"
},
"repository": {
"type": "git",
"url": "https://github.com/auth0-extensions/canirequire.git"
},
"author": "Auth0",
"license": "ISC",
"bugs": {
"url": "https://github.com/auth0-extensions/canirequire/issues"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env",
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
]
}
]
]
},
"homepage": "https://github.com/auth0-extensions/canirequire",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"concurrently": "^8.2.0",
"gulp": "^5.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"http-server": "^14.1.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"jquery": "^3.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}