-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.08 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "starter-webpack-angularjs",
"version": "1.0.0",
"description": "A starter for a project with AngularJS (1.x), Bootstrap (4.x) and Font Awesome (4.x) powered by Webpack (3.x).",
"repository": {
"type": "git",
"url": "git+https://github.com/cducrot/starter-webpack-angularjs.git"
},
"bugs": {
"url": "https://github.com/cducrot/starter-webpack-angularjs/issues"
},
"homepage": "https://github.com/cducrot/starter-webpack-angularjs",
"keywords": [],
"author": "Christian Ducrot <christian@ducrot.de>",
"license": "MIT",
"browserslist": [
">1%"
],
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "karma start",
"test:live": "karma start --auto-watch --no-single-run"
},
"dependencies": {
"@uirouter/angularjs": "^1.0.18",
"angular": "^1.7.0",
"angular-animate": "^1.7.0",
"angular-touch": "^1.7.0",
"bootstrap": "^4.1.1",
"font-awesome": "^4.7.0",
"holderjs": "^2.9.4",
"ui-bootstrap4": "^3.0.3"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"angular-mocks": "^1.7.0",
"autoprefixer": "^9.1.5",
"babel-loader": "^8.0.4",
"babel-plugin-angularjs-annotate": "^0.10.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.0",
"cssnano": "^4.1.4",
"file-loader": "^5.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "^3.2.1",
"karma": "^4.4.1",
"karma-coverage": "^2.0.1",
"karma-jasmine": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.9.0",
"phantomjs-prebuilt": "^2.1.16",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.1.2",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.2"
}
}