-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1013 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1013 Bytes
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
{
"name": "SoundRocket",
"version": "0.0.1",
"description": "A sound aggregator.",
"author": "Loïc Fontaine",
"private": true,
"main": "server.js",
"engines": {
"node": "~0.10.9",
"npm": "~1.2.24"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": "git@github.com:lfont/SoundRocket.git",
"license": "MIT",
"dependencies": {
"express": "~3.2.6",
"underscore": "~1.5.1",
"ejs": "~0.8.4",
"ejs-locals": "~1.0.2",
"mongoose": "~3.6.13",
"passport": "~0.1.17",
"passport-google-oauth": "~0.1.5",
"passport-facebook": "~0.1.5",
"URIjs": "^1.12.1",
"async": "^0.2.10"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-requirejs": "~0.4.1",
"rjs-build-analysis": "0.0.3",
"grunt-contrib-clean": "~0.4.1",
"grunt-contrib-copy": "~0.4.1",
"grunt-nodemon": "0.0.8",
"grunt-contrib-watch": "~0.4.4",
"grunt-concurrent": "~0.3.0"
}
}