-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "learn-webpack-repo",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build": "./node_modules/.bin/webpack -c webpack.config.js",
"start": "node ./bundles/my_bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openyshev/learn-webpack.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/openyshev/learn-webpack/issues"
},
"homepage": "https://github.com/openyshev/learn-webpack#readme",
"dependencies": {
"@babel/core": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.2",
"autoprefixer": "^9.7.1",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^3.1.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"raw-loader": "^3.1.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"terser-webpack-plugin": "^2.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"url-loader": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}