-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.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": "firmware-wizard-frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "exit 1",
"lint": "eslint src",
"build": "npm run clean && npm run build:webpack",
"build:webpack": "webpack --optimize-minimize",
"clean": "rm -rf dist/*",
"watch": "npm run clean && npm run watch:webpack",
"watch:webpack": "webpack-dev-server --inline"
},
"repository": {
"type": "git",
"url": "https://github.com/freifunk-berlin/firmware-wizard-frontend.git"
},
"author": "André Gaul <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/freifunk-berlin/firmware-wizard-frontend/issues"
},
"homepage": "https://github.com/freifunk-berlin/firmware-wizard-frontend",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.9.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.24.1",
"image-webpack-loader": "^3.1.0",
"less": "^2.5.3",
"less-loader": "^2.2.3",
"less-plugin-clean-css": "^1.5.1",
"live-server": "^0.8.2",
"ng-annotate-loader": "^0.2.0",
"ngtemplate-loader": "^1.3.1",
"webpack": "^2.2.0-rc.3",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"@uirouter/angularjs": "^1.0.6",
"angular": "^1.6.1",
"angular-animate": "^1.6.1",
"angular-bootstrap": "^0.12.2",
"angular-messages": "^1.6.1",
"angular-sanitize": "^1.6.1",
"angular-simple-logger": "^0.1.7",
"angular-translate": "^2.13.1",
"angular-translate-loader-static-files": "^2.13.1",
"angular-ui-bootstrap": "^2.4.0",
"bootstrap": "^3.3.7",
"font-awesome": "^4.7.0",
"ip-address": "^5.0.2",
"leaflet": "^1.2.0",
"lodash": "^4.17.4",
"nano-md5": "^1.0.3",
"ssh-pub-key-validation": "^1.0.0",
"ui-leaflet": "^2.0.0"
}
}