-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 1.05 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
{
"name": "my-custom-project",
"version": "0.1.0",
"devDependencies": {
"@amcharts/amcharts4": "^4.10.13",
"@babel/core": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^6.4.1",
"cross-env": "^7.0.3",
"html-webpack-plugin": "^4.5.1",
"source-map-loader": "0.2.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.11.2",
"write-file-webpack-plugin": "^4.5.1"
},
"scripts": {
"build": "cross-env NODE_ENV=prd webpack",
"build:dev": "cross-env NODE_ENV=dev webpack",
"serve": "cross-env NODE_ENV=dev webpack-dev-server --mode development",
"serve:prd": "cross-env NODE_ENV=prd webpack-dev-server --mode development"
},
"dependencies": {
"@amcharts/amcharts4-geodata": "^4.1.19",
"@types/core-js": "^2.5.4",
"core-js": "^3.8.2",
"regenerator-runtime": "^0.13.7"
}
}