-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "interactive-chart",
"version": "0.0.11",
"description": "push data and make interactive chart",
"main": "dist/index.min.js",
"module": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"dev": "webpack-dev-server"
},
"author": "taenykim",
"license": "MIT",
"keywords": [
"interactive",
"chart",
"line-chart",
"pie-chart",
"canvas",
"svg",
"javascript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/taenykim/interactive-chart.git"
},
"bugs": {
"url": "https://github.com/taenykim/interactive-chart/issues"
},
"homepage": "https://github.com/taenykim/interactive-chart#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/optimize-css-assets-webpack-plugin": "^5.0.1",
"@types/terser-webpack-plugin": "^4.2.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"module-alias": "^2.2.2",
"terser-webpack-plugin": "^4.2.2",
"ts-loader": "^8.0.4",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}