-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
87 lines (87 loc) · 2.64 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
{
"name": "skyflow-js",
"preferGlobal": true,
"analyze": false,
"version": "1.38.2",
"author": "Skyflow",
"description": "Skyflow JavaScript SDK",
"homepage": "https://github.com/skyflowapi/skyflow-js",
"main": "./dist/sdkNodeBuild/index.js",
"types": "./types/index-node.d.ts",
"files": [
"dist/sdkNodeBuild",
"types"
],
"license": "MIT",
"keywords": [
"client",
"sdk",
"javascript"
],
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"dev": "webpack serve --config=webpack.dev.js --open --hot ",
"build-browser-sdk": "webpack --config=webpack.skyflow-browser.js",
"build-node-sdk": "webpack --config=webpack.skyflow-node.js",
"build-iframe": "webpack --config=webpack.iframe.js",
"test": "jest --config=jest.config.json"
},
"repository": {
"type": "git",
"url": "https://github.com/skyflowapi/skyflow-js.git"
},
"dependencies": {
"core-js": "^3.6.5",
"framebus": "^4.0.0",
"inject-stylesheet": "^2.0.0",
"jquery": "^3.5.1",
"jquery-mask-plugin": "^1.14.16",
"jss": "^10.7.1",
"jss-preset-default": "^10.7.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"mime": "3.0.0",
"regex-parser": "^2.2.11",
"set-value": "^4.0.1"
},
"engines": {
"node": ">=12.0",
"npm": ">=6.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.10.1",
"@babel/runtime": "^7.10.2",
"@types/jest": "^27.0.1",
"@types/jquery-mask-plugin": "^1.14.3",
"@types/mime": "^3.0.4",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"compression-webpack-plugin": "^8.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-plugin-import": "^2.26.0",
"fork-ts-checker-webpack-plugin": "^6.3.2",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.2.1",
"node-polyfill-webpack-plugin": "^2.0.1",
"typescript": "^4.6.3",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.7.4",
"webpack-manifest-plugin": "^4.0.2",
"webpack-merge": "^5.8.0"
}
}