-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
74 lines (74 loc) · 2.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "uplot-wrappers",
"version": "1.2.3",
"description": "React and Vue.js wrappers for uPlot",
"author": "Sergey Kalinichev <kalinichev.so.0@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/skalinichev/uplot-wrappers#readme",
"repository": {
"type": "git",
"url": "https://github.com/skalinichev/uplot-wrappers.git"
},
"bugs": {
"url": "https://github.com/skalinichev/uplot-wrappers/issues"
},
"engines": {
"node": ">=16.0"
},
"keywords": [
"Charts",
"uPlot",
"React",
"Vue",
"Wrapper"
],
"workspaces": {
"packages": [
"common",
"react",
"vue",
"svelte"
],
"nohoist": [
"**/@types/**"
]
},
"private": true,
"scripts": {
"build": "concurrently 'npm run buildReact' 'npm run buildVue' 'npm run buildSvelte'",
"buildVue": "webpack --env=framework=vue",
"buildReact": "webpack --env=framework=react",
"buildSvelte": "webpack --env=framework=svelte",
"buildProd": "concurrently 'npm run buildVue -- --env=mode=production' 'npm run buildReact -- --env=mode=production' 'npm run buildSvelte -- --env=mode=production'",
"serveVue": "webpack serve --env=framework=vue --env=example=true",
"serveVue3": "webpack serve --env=framework=vue --env=frameworkVersion=3 --env=example=true",
"serveReact": "webpack serve --env=framework=react --env=example=true",
"serveSvelte": "webpack serve --env=framework=svelte --env=example=true"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/babel-plugin-jsx": "^1.0.6",
"@vue/babel-preset-jsx": "^1.2.4",
"babel-loader": "^8.2.2",
"concurrently": "^6.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.2",
"eslint": "^7.22.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-svelte": "^2.38.0",
"eslint-plugin-vue": "^7.7.0",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"typescript": "^4.2.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
}
}