-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 2.36 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": "wheel-of-fortune",
"version": "1.1.0",
"description": "A wheel of Forune as simple angular app.",
"scripts": {
"start": "npm run serve & npm run watch",
"serve": "npm run copy && browser-sync start --config bs-config.js",
"watch": "npm run watch:js & npm run watch:less",
"watch:less": "chokidar './lib/**/*.less' --initial -c 'npm run build:less > dist/app.css'",
"watch:js": "watchify lib/app.js --verbose -d -t [ browserify-ng-html2js --baseDir ./lib --requireAngular true ] -o dist/app.js",
"build": "npm run copy && npm run build:js && npm run build:css",
"build:js": "browserify -d -t [ browserify-ng-html2js --baseDir ./lib --requireAngular true ] lib/app.js | exorcist dist/app.js.map > dist/app.js",
"build:less": "lessc --source-map-map-inline --source-map-rootpath=./ --source-map-basepath=$PWD lib/app.less",
"build:css": "npm run build:less | exorcist dist/app.css.map > dist/app.css",
"copy": "mkdir -p ./dist && node ./scripts/copy.js",
"deploy": "npm run build && gh-pages -d dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Angular",
"wheel of fortune",
"wheel",
"of",
"fortune",
"hammerjs",
"election",
"lottery",
"raffle"
],
"author": "Alexander Pinnecke <[email protected]>",
"contributors": [
"Stefan Schult <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/finanzcheck/wheel-of-fortune.git"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"angular": "^1.4.7",
"angular-animate": "^1.4.7",
"angular-hammer": "apinnecke/angular-hammer",
"angular-local-storage": "^0.2.2",
"angular-sort-button": "^0.5.0",
"angular-translate": "^2.9.2",
"angular-ui-bootstrap": "^0.14.3",
"angular-ui-router": "^0.2.15",
"angular-ui-router-anim-in-out": "^1.0.2",
"array-shuffle": "^1.0.0",
"bootstrap": "^3.3.5",
"browser-sync": "^2.11.1",
"browserify": "^12.0.1",
"browserify-ng-html2js": "^1.2.0",
"browserify-shim": "^3.8.11",
"chance": "^1.0.0",
"chokidar-cli": "^1.2.0",
"css-modulesify": "^0.19.0",
"csv": "^0.4.6",
"exorcist": "^0.4.0",
"gh-pages": "^0.10.0",
"git-rev": "^0.2.1",
"hammerjs": "^2.0.4",
"less": "^2.6.0",
"raphael": "^2.1.4",
"watchify": "^3.7.0"
}
}