-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.54 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
{
"name": "grandeur-js",
"exports": {
".": {
"import": "./dist/grandeur-cjs.js"
},
"./react": {
"import": "./dist/grandeur-react.js"
}
},
"version": "1.5.1",
"description": "Grandeur SDK from JavaScript. It can be utilized to integrate Grandeur features into web apps.",
"main": "./dist/grandeur-cjs.js",
"module": "./dist/grandeur-cjs.js",
"browser": "dist/grandeur.js",
"bugs": "https://github.com/grandeurdev/js-sdk/issues",
"repository": "grandeurdev/js-sdk",
"homepage": "https://grandeur.dev",
"scripts": {
"test": "webpack --profile --json > debug/stats.json && webpack-bundle-analyzer debug/stats.json dist/",
"build": "webpack --config webpack.config.js",
"start": " webpack server --open --config webpack.config.js"
},
"keywords": [
"cloud",
"grandeurtech",
"IoT",
"serverless",
"backend",
"database"
],
"author": "Grandeur Technologies <[email protected]>",
"license": "MIT",
"dependencies": {
"@paralleldrive/cuid2": "^2.2.0",
"fetch-ponyfill": "^7.1.0",
"hi-base32": "^0.5.1",
"isomorphic-ws": "^5.0.0",
"totp-generator": "^0.0.13"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^2.1.3",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}