This repository was archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.11 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.11 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
65
66
{
"name": "cyclone",
"version": "1.2.0",
"description": "Time tracking",
"homepage": "https://github.com/Cyclodex/cyclone#readme",
"bugs": {
"url": "https://github.com/Cyclodex/cyclone/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cyclodex/cyclone.git"
},
"license": "GPL-3.0+",
"author": "Fabian Gander <cyclodex@jumps.ch>",
"scripts": {
"dev-build": "webpack",
"dev-deploy": "firebase use dev; firebase deploy",
"start": "webpack --watch",
"watch": "webpack --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"v0-build": "webpack --config webpack.config.v0.js --progress",
"v0-deploy": "firebase use v0; firebase deploy",
"v1-build": "webpack --config webpack.config.v1.js --progress",
"v1-deploy": "firebase use v1; firebase deploy",
"version": "./version.sh $npm_package_version"
},
"dependencies": {
"angular": "^1.7.9",
"angular-animate": "^1.7.6",
"angular-aria": "^1.7.6",
"angular-clipboard": "^1.6.2",
"angular-loading-bar": "^0.9.0",
"angular-logger": "1.3.2",
"angular-material": "http://github.com/angular/bower-material/tarball/v1.1.4",
"angular-messages": "^1.7.6",
"angular-moment": "^1.3.0",
"angular-ui-router": "^1.0.20",
"angularfire": "^2.3.0",
"angulartics": "^1.6.0",
"angulartics-google-analytics": "^0.5.0",
"firebaseui": "^1.0.0",
"randomcolor": "^0.5.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-loader": "^8.0.5",
"babel-plugin-angularjs-annotate": "^0.10.0",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^2.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"firebase": "^3.3.2",
"firebase-tools": "^6.3.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"raw-loader": "^1.0.0",
"style-loader": "^0.23.1",
"webpack": "^3.12.0",
"webpack-bundle-analyzer": "3.3.2",
"webpack-file-changer": "2.0.1"
}
}