forked from CELTAB/rfidmonitor-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.79 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
{
"name": "RFIDMonitorPlatform",
"version": "1.0.0",
"description": "A prototype version of RFIDMonitor Platform system",
"author": [
{
"name": "Gustavo Valiati",
"email": "gustavovaliati@gmail.com"
},
{
"name": "Thiago Bitencourt",
"email": "thiago.mbitencourt@gmail.com"
},
{
"name": "Mohamad Abu Ali",
"email": "mohamad@abuali.com.br"
}
],
"homepage": "www.celtab.org.br",
"repository": {
"type": "git",
"url": "https://github.com/CELTAB/rfidmonitor-platform"
},
"scripts": {
"apidoc": "apidoc -i apidoc_source/ -o apidoc;",
"deploy": "npm install; grunt; npm run apidoc;",
"local": "nodemon app.js --debugConsole",
"server": "pm2 start rfidplatform",
"pull": "git pull origin master; npm run deploy; pm2 restart rfidplatform"
},
"engines": {
"node": "0.12.2"
},
"main": "app.js",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.12.3",
"chai": "~3.0.0",
"client-sessions": "^0.7.0",
"cors": "^2.6.1",
"express": "4.1.1",
"express-session": "^1.11.3",
"multer": "^1.0.3",
"passport": "^0.2.2",
"passport-http-bearer": "^1.0.1",
"pg": "~4.3.0",
"pg-hstore": "^2.3.2",
"sequelize": "^3.6.0",
"validator": "^3.43.0",
"winston": "^1.0.0",
"q": "~1.4.1"
},
"devDependencies": {
"apidoc": "0.16.1",
"grunt": "0.4.5",
"grunt-bower-task": "0.4.0",
"grunt-cli": "0.1.13",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "1.0.0",
"grunt-contrib-htmlmin": "1.0.0",
"grunt-contrib-jshint": "1.0.0",
"grunt-contrib-uglify": "1.0.0",
"grunt-ng-annotate": "2.0.1"
},
"apidoc": {
"title": "RFIDMonitor Platform API Documentation",
"url": ""
}
}