-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "telegram-chart",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "webpack-dev-server --progress",
"build": "webpack --mode=production --progress",
"build:noprogress": "webpack --mode=production",
"analyze:dev": "npm start -- --analyze",
"analyze:prod": "npm run build -- --analyze",
"deploy": "gh-pages -d dist"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/runtime": "^7.4.3",
"autoprefixer": "^9.5.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"css-loader": "^2.1.1",
"d3-ease": "^1.0.5",
"html-webpack-plugin": "^3.2.0",
"memoize-one": "^5.0.4",
"mini-css-extract-plugin": "^0.6.0",
"postcss-csso": "^3.0.0",
"postcss-loader": "^3.0.0",
"shallow-equal": "^1.1.0",
"terser-webpack-plugin": "^1.2.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
},
"devDependencies": {
"gh-pages": "^2.0.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-server": "^3.3.1"
},
"browserslist": [
"last 2 years",
"not < 0.5%"
]
}