-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "delphineus",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/server.js",
"start:dev": "nodemon server/server.js",
"db:setup": "sequelize db:migrate && sequelize db:seed:all",
"db:drop": "sequelize db:migrate:undo:all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/delphineus/delphineus.git"
},
"author": "Team Delphinus",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/delphineus/delphineus/issues"
},
"homepage": "https://github.com/delphineus/delphineus#readme",
"dependencies": {
"angular-material": "^1.1.3",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"express-session": "^1.15.1",
"morgan": "^1.8.1",
"open-graph": "^0.2.3",
"passport": "^0.3.2",
"passport-github2": "^0.1.10",
"pg": "^6.1.4",
"sequelize": "^3.30.2",
"sequelize-cli": "^2.7.0"
},
"devDependencies": {
"eslint-config-hackreactor": "git://github.com/reactorcore/eslint-config-hackreactor"
}
}