-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 KB
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
{
"name": "webpack-modular",
"version": "1.0.0",
"description": "A scaffold project to demonstrate modular, simple and efficient use of webpack and npm in a frontend project",
"main": "index.js",
"scripts": {
"serve": "node tasks.js",
"build": "node tasks.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IdanCo/webpack-modular.git"
},
"keywords": [
"webpack",
"npm",
"frontend"
],
"author": "Idan Cohen",
"license": "ISC",
"bugs": {
"url": "https://github.com/IdanCo/webpack-modular/issues"
},
"homepage": "https://github.com/IdanCo/webpack-modular#readme",
"dependencies": {
"angular": "^1.6.3",
"bootstrap": "4.0.0-beta",
"popper.js": "^1.11.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.27.3",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^2.1.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"jquery": "^3.2.1",
"node-sass": "^4.5.0",
"postcss-flexbugs-fixes": "^2.1.0",
"postcss-loader": "^1.3.3",
"sass-loader": "^6.0.3",
"style-loader": "^0.17.0",
"webpack": "^2.5.0",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-config": "^7.0.0",
"webpack-dev-server": "^2.4.2"
}
}