forked from briandeanda/CSin3Students
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "CSin3Students",
"version": "1.0.0",
"description": "A site of CSin3 students",
"main": "app.js",
"scripts": {
"setup": "./scripts/setup.sh",
"bootstrap": "node scripts/bootstrap-database.js",
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint routes/*.js config/*/*.js models/*.js scripts/*.js *.js util/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/briandeanda/CSin3Students.git"
},
"author": "Brian DeAnda, Daniel Diaz",
"license": "ISC",
"bugs": {
"url": "https://github.com/briandeanda/CSin3Students/issues"
},
"homepage": "https://github.com/briandeanda/CSin3Students",
"dependencies": {
"async": "^1.4.2",
"body-parser": "^1.13.3",
"cookie-parser": "^1.3.5",
"debug": "^2.2.0",
"eslint": "^1.10.1",
"express": "^4.13.2",
"hogan-express": "^0.5.2",
"kerberos": "~0.0",
"mongoose": "^4.0.0"
},
"engines": {
"node": "0.10.32"
},
"devDependencies": {
"eslint-plugin-react": "^3.10.0"
}
}