-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 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
47
48
49
50
51
52
53
{
"name": "civio-graphs-boilerplate",
"version": "1.0.0",
"description": "Civio graphs boilerplate with Webpack 4, Babel 7, Sass & Hot Reload",
"main": "main.js",
"scripts": {
"build": "webpack --mode production",
"dev": "webpack-dev-server --mode development --hot"
},
"keywords": [
"webpack",
"sass",
"babel",
"boilerplate"
],
"author": "Raul Díaz Poblete",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"autoprefixer": "^9.7.6",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-hot-loader": "^1.4.4",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.3.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"civio-graphs-lib": "github:civio/civio-graphs-lib",
"d3": "^5.16.0",
"lodash": "^4.17.13"
},
"postcss": {
"plugins": {
"autoprefixer": {},
"cssnano": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}