-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.2 KB
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
{
"name": "skyflow-js-monorepo",
"private": true,
"version": "0.0.0",
"description": "Skyflow JavaScript SDK monorepo (skyflow-js + skyflow-flowvault-js sharing @core).",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"type-check": "npm run type-check --workspaces --if-present",
"build:types": "npm run build:types --workspaces --if-present",
"dev": "npm run dev -w skyflow-js",
"dev:flowvault": "npm run dev -w skyflow-flowvault-js",
"build-browser-sdk": "npm run build-browser-sdk --workspaces --if-present",
"build-node-sdk": "npm run build-node-sdk --workspaces --if-present",
"build-iframe": "npm run build-iframe --workspaces --if-present",
"build": "npm run build-browser-sdk && npm run build-node-sdk && npm run build-iframe",
"test": "npm run test --workspaces --if-present",
"test:coverage": "jest --config jest.config.js"
},
"engines": {
"node": ">=12.0",
"npm": ">=6.0"
},
"devDependencies": {
"@babel/core": "7.28.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.28.0",
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
"@babel/plugin-transform-runtime": "7.28.0",
"@babel/preset-env": "7.28.0",
"@babel/preset-typescript": "7.27.1",
"@babel/runtime": "7.27.6",
"@types/jest": "27.5.2",
"@types/jquery-mask-plugin": "1.14.6",
"@types/mime": "3.0.4",
"@types/node": "14.18.63",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-loader": "9.2.1",
"clean-webpack-plugin": "4.0.0",
"compression-webpack-plugin": "8.0.1",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-airbnb-typescript": "14.0.2",
"eslint-plugin-import": "2.32.0",
"fork-ts-checker-webpack-plugin": "6.5.3",
"html-webpack-plugin": "5.6.3",
"jest": "27.5.1",
"node-polyfill-webpack-plugin": "2.0.1",
"tsc-alias": "1.9.1",
"typescript": "4.9.5",
"webpack": "5.100.2",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.15.2",
"webpack-manifest-plugin": "4.1.1",
"webpack-merge": "5.10.0"
}
}