-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.69 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
{
"name": "webpack-application-template",
"version": "1.1.0",
"private": true,
"description": "Framework neutral template for apps built with Webpack and Babel",
"main": "index.js",
"scripts": {
"clean": "rimraf dist/*",
"build": "npm run clean && webpack --config webpack.production.config",
"watch": "webpack --config webpack.development.config.js --watch",
"start": "webpack-dev-server --config webpack.webpack-dev-server.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/aeinbu/npm-package-for-ng-template.git"
},
"author": "Arjan Einbu <arjan@einbu.no> (http://blog.einbu.no)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-proposal-pipeline-operator": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.0",
"deepmerge": "^4.2.2",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"regenerator-runtime": "^0.13.3",
"rimraf": "^3.0.0",
"sass": "^1.22.3",
"sass-loader": "^7.1.0",
"style-loader": "^1.1.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^3.0.0",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"bootstrap": "^4.4.1",
"core-js": "^3.6.0",
"font-awesome": "^4.7.0"
}
}