-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.67 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.67 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "TeamUp",
"version": "1.0.0",
"description": "A web app that connects players with upcomming games within their area.",
"author": "StirTech",
"contributors": [
"Saif Elokour",
"Tawfik Kahwaje",
"Ibrahim Tamimi",
"Rana Kelani"
],
"scripts": {
"start": "./node_modules/.bin/nodemon --ignore node_modules server/server.js",
"test": "node_modules/.bin/_mocha server/spec/*.js && karma start",
"postinstall": "npm install -g bower; bower install && npm install -g grunt-cli && grunt",
"coverage": "istanbul cover -x '*Spec.js' %APPDATA%/npm/node_modules/mocha/bin/_mocha -- -R spec ./server/spec/**/*.js",
"lint": "eslint ./"
},
"pre-commit": "lint",
"repository": {
"type": "git",
"url": "https://github.com/StirTech/TeamUp"
},
"license": "UNLICENSED",
"devDependencies": {
"browser-sync": "^1.5.7",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"clone-stats": "0.0.1",
"eslint": "^3.3.1",
"grunt": "^0.4.4",
"grunt-cli": "^1.2.0",
"grunt-contrib-concat": "^0.3.0",
"grunt-contrib-cssmin": "^0.9.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^0.4.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-karma": "^2.0.0",
"grunt-mocha-test": "^0.10.0",
"grunt-nodemon": "^1.0.4",
"grunt-shell": "^0.2.7",
"istanbul": "^0.4.4",
"karma": "^1.1.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^0.2.1",
"karma-nyan-reporter": "0.0.43",
"karma-phantomjs-launcher": "^1.0.1",
"karma-requirejs": "^1.0.0",
"karma-sinon": "^1.0.5",
"karma-unicorn-reporter": "^0.1.4",
"mocha": "^2.3.4",
"pre-commit": "^1.1.3",
"requirejs": "^2.2.0",
"should": "^10.0.0",
"sinon": "^1.17.5",
"supertest": "^2.0.0"
},
"dependencies": {
"angular": "^1.5.8",
"angular-animate": "^1.5.8",
"angular-aria": "^1.5.8",
"angular-material": "^1.1.0",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"browser-sync": "^2.14.0",
"clone-stats": "^1.0.0",
"express": "^4.14.0",
"fs": "0.0.2",
"grunt": "^1.0.1",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-cssmin": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha-test": "^0.12.7",
"grunt-nodemon": "^0.4.2",
"grunt-shell": "^1.3.0",
"jwt-simple": "^0.5.0",
"karma": "^1.1.2",
"karma-mocha": "^1.1.1",
"karma-nyan-reporter": "^0.2.4",
"mocha": "^3.0.0",
"mongoose": "^4.5.8",
"morgan": "^1.7.0",
"multer": "^1.2.0",
"q": "^2.0.3",
"request": "^2.74.0"
}
}