-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 918 Bytes
/
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
{
"name": "blockchainexplorer",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "webpack --config webpack.config.js --mode development -w",
"build": "webpack --config webpack.config.js --mode production"
},
"author": "AsyncLabs",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.1.5",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.1",
"file-loader": "^2.0.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.10.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2"
}
}