-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "simple-chart",
"version": "1.0.0",
"description": "A simple chart Library",
"main": "dist/index.js",
"scripts": {
"dev": "rm -rf ./dist && webpack --mode development",
"start": "webpack-dev-server",
"lint": "npx eslint src/**/*.tsx",
"build": "rm -rf ./dist && webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvinhtml/simple-chart.git"
},
"keywords": [
"chart"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/alvinhtml/simple-chart/issues"
},
"homepage": "https://github.com/alvinhtml/simple-chart#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"file-loader": "^6.2.0",
"html-minifier": "^4.0.0",
"html-webpack-plugin": "^5.3.2",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.1",
"webpack": "^5.50.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"hidpi-canvas": "^1.0.10"
}
}