-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.42 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "carcassonne-scoreboard-client",
"version": "1.5.0",
"author": "Andrea Sonny <[email protected]>",
"description": "Online Scoreboard for the famous boardgame Carcassonne",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/andreasonny83/carcassonne-scoreboard-client.git"
},
"bugs": {
"url": "https://github.com/andreasonny83/carcassonne-scoreboard-client/issues"
},
"engines": {
"node": "6.x",
"npm": "3.x"
},
"scripts": {
"bower": "bower",
"precommit": "npm run test",
"commit": "git-cz",
"postinstall": "bower install",
"karma": "karma",
"test": "karma start karma.conf.js --single-run --browsers PhantomJS",
"test:watch": "karma start karma.conf.js --auto-watch",
"prestart": "nodemon index.js > /dev/null &",
"start": "gulp serve",
"build": "gulp build",
"nodemon": "nodemon",
"preserve:dist": "gulp build",
"serve:dist": "nodemon dist/index.js",
"preheroku-postbuild": "npm rebuild node-sass",
"heroku-postbuild": "gulp deploy"
},
"contributors": [],
"private": true,
"license": "MIT",
"dependencies": {
"bower": "1.8.0",
"browser-sync": "2.13.0",
"del": "2.2.1",
"express": "4.15.2",
"gulp": "3.9.1",
"gulp-angular-templatecache": "2.0.0",
"gulp-autoprefixer": "3.1.0",
"gulp-changed": "1.3.0",
"gulp-cssnano": "2.1.0",
"gulp-html-replace": "1.6.1",
"gulp-htmlmin": "2.0.0",
"gulp-iconfont": "8.0.1",
"gulp-imagemin": "3.0.1",
"gulp-inject-version": "1.0.0",
"gulp-load-plugins": "1.2.4",
"gulp-rename": "1.2.2",
"gulp-sass": "3.1.0",
"gulp-sourcemaps": "1.6.0",
"gulp-uglify": "1.5.4",
"gulp-usemin": "0.3.16",
"gulp-util": "3.0.7",
"install": "0.8.1",
"karma": "1.1.1",
"minimist": "1.2.0",
"morgan": "1.8.1",
"nodemon": "1.11.0",
"npm": "3.10.5",
"opn": "4.0.2",
"run-sequence": "1.2.2",
"serve-index": "1.8.0",
"serve-static": "1.11.1",
"tiny-lr": "0.2.1",
"watch": "0.19.1"
},
"devDependencies": {
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"jasmine-core": "2.4.1",
"karma-chrome-launcher": "1.0.1",
"karma-firefox-launcher": "1.0.0",
"karma-jasmine": "1.0.2",
"karma-phantomjs-launcher": "1.0.1",
"karma-safari-launcher": "1.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}