forked from carloluis/webpack-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
{
"name": "webpack-demo",
"version": "1.0.0",
"description": "webpack 4 (legato) demo app",
"main": "index.js",
"scripts": {
"default:dev": "webpack --mode development",
"default:prod": "webpack --mode production",
"build:dev": "webpack --mode development",
"build": "webpack --mode production",
"stats": "webpack --profile --json > stats.json",
"dev": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carloluis/webpack-demo.git"
},
"keywords": [
"webpack",
"webpack-4",
"webpack 4 (legato)",
"demo"
],
"author": "Carloluis Rodríguez <carloluisr@gmail.com> (https://github.com/carloluis)",
"license": "MIT",
"bugs": {
"url": "https://github.com/carloluis/webpack-demo/issues"
},
"homepage": "https://github.com/carloluis/webpack-demo#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.4.1",
"css-loader": "^0.28.10",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "webpack-contrib/html-webpack-plugin",
"html-webpack-template": "^6.1.0",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.2",
"webpack": "4.1.1",
"webpack-cli": "2.0.10",
"webpack-dev-server": "3.1.0"
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0",
"reformat-number": "1.0.0"
}
}