-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
79 lines (79 loc) · 2.01 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
{
"author": "Rally Software",
"name": "alm-mobile",
"description": "Rally ALM Mobile Application",
"version": "0.0.1",
"homepage": "http://rally1.rallydev.com/m",
"repository": {
"type": "git",
"url": "https://github.com/RallySoftware/alm-mobile"
},
"engines": {
"node": "~0.10.7"
},
"scripts": {
"watch": "grunt watch",
"start": "nodemon server/src/server.js",
"test": "grunt test"
},
"dependencies": {
"ejs": "1.0.0",
"express": "3.4.8",
"html-md": "3.0.2",
"lodash": "2.4.1",
"request": "2.34.0",
"rallymetrics": "0.3.1",
"jquery": "~2.1.0",
"backbone": "~1.1.2",
"envify": "~1.2.1",
"react": "~0.10.0",
"moment": "2.6.0",
"pagedown": "~1.1.0",
"bower": "~1.3.1",
"es6-promise": "~1.0.0",
"fluxxor": "~1.1.3"
},
"devDependencies": {
"grunt-compile-handlebars": "0.8.0",
"grunt-contrib-clean": "0.5.0",
"grunt-contrib-concat": "0.4.0",
"grunt-contrib-copy": "0.5.0",
"grunt-contrib-less": "0.11.0",
"grunt-contrib-watch": "0.6.1",
"grunt-contrib-uglify": "0.4.0",
"grunt-express": "~1.2.1",
"grunt-lib-contrib": "0.6.1",
"grunt-text-replace": "~0.3.6",
"grunt-s3": "~0.2.0-alpha.3",
"chai": "~1.9.0",
"mocha": "1.18.2",
"grunt-mocha": "~0.4.10",
"jquery": "~2.1.0",
"requirejs": "~2.1.11",
"sinon-chai": "~2.5.0",
"sinon": "1.9.1",
"browserify": "~3.33.0",
"grunt-browserify": "2.0.8",
"coffeeify": "~0.6.0",
"reactify": "0.13.1",
"browserify-shim": "3.4.1",
"grunt-contrib-cssmin": "~0.9.0"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "global:jQuery",
"backbone": "global:Backbone",
"underscore": "global:_",
"react": "global:React",
"moment": "global:moment",
"pagedown": "global:Markdown",
"rallymetrics": "global:RallyMetrics",
"html-md": "global:md",
"spin": "global:Spinner",
"reconnecting-websocket": "global:ReconnectingWebSocket"
}
}