-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.12 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.12 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "angular1-boilerplate",
"version": "0.0.1",
"description": "A Boilerplate application for building SPA using angular1 in ES6 with code coverage",
"main": "index.html",
"author": "Vitalii Savchuk <vitalii.savchuk@eliftech.com>",
"scripts": {
"deploy": "npm run build:prod && firebase deploy",
"start": "webpack-dev-server --env=dev --content-base public/",
"clean:dist": "rimraf public/",
"prod": "npm run clean:dist && webpack --env=prod",
"build:dev": "webpack --env=dev --progress --profile --colors",
"build:prod": "webpack --env=prod --progress --profile --colors",
"lint": "esw src --color",
"lint:watch": "yarn lint -- --watch"
},
"dependencies": {
"angular": "^1.6.2",
"angular-animate": "^1.6.2",
"angular-cookies": "1.6.2",
"angular-local-storage": "^0.2.2",
"angular-mocks": "^1.6.2",
"angular-resource": "^1.6.2",
"angular-route": "^1.6.2",
"angular-sanitize": "^1.6.2",
"angular-schema-form": "^0.8.13",
"angular-toastr": "latest",
"angular-ui-bootstrap": "^2.5.0",
"angular-ui-router": "^1.0.0-beta.2",
"bootstrap": "^4.0.0-alpha.6",
"font-awesome": "^4.7.0",
"lodash": "^4.17.4",
"satellizer": "^0.15.5"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.22.0",
"css-loader": "^0.26.1",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-config-angular": "^0.5.0",
"eslint-config-edocu": "^1.0.1",
"eslint-plugin-angular": "^2.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-watch": "^3.0.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"html-loader": "^0.4.0",
"html-webpack-plugin": "^2.28.0",
"imports-loader": "^0.7.0",
"json-loader": "^0.5.4",
"less-loader": "^2.2.3",
"ng-annotate-loader": "^0.2.0",
"ngtemplate-loader": "^1.3.1",
"node-sass": "^4.5.0",
"sass-loader": "^6.0.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-merge": "^2.6.1"
}
}