This repository was archived by the owner on Apr 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.76 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
{
"name": "opac-nodejs",
"version": "0.1.0",
"description": "library Online Public Access Catalog wrote by nodejs",
"main": "index.js",
"scripts": {
"dev": "nodemon ./bin/run",
"start": "cross-env NODE_ENV=production ./bin/run",
"pm2-dev": "sudo pm2 start ecosystem.config.js --env development",
"pm2": "sudo pm2 start ecosystem.config.js --env production",
"initdb": "grunt initdb"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carney520/opac-nodejs.git"
},
"keywords": [
"opac",
"library",
"management",
"node"
],
"author": "carney lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/carney520/opac-nodejs/issues"
},
"homepage": "https://github.com/carney520/opac-nodejs#readme",
"dependencies": {
"bcryptjs": "^2.3.0",
"bluebird": "^3.3.3",
"body-parser": "^1.15.0",
"compression": "^1.6.1",
"connect-assets": "^5.1.0",
"cookie-parser": "^1.4.1",
"cookie-session": "^1.2.0",
"csurf": "^1.8.3",
"debug": "^2.6.8",
"es6-promise": "^3.1.2",
"express": "^4.13.4",
"express-resource": "^1.0.0",
"flash": "^1.1.0",
"ioredis": "^1.15.1",
"jade": "^1.11.0",
"method-override": "^2.3.5",
"methods": "^1.1.2",
"mongoose": "^4.4.3",
"morgan": "^1.6.1",
"multer": "^1.1.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pluralize": "^1.2.1",
"qs": "^6.2.0",
"resourceful-acl": "^1.0.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"chai": "^3.5.0",
"cross-env": "^5.0.1",
"errorhandler": "^1.4.3",
"grunt": "^1.0.1",
"grunt-contrib-jade": "^1.0.0",
"grunt-contrib-watch": "^0.6.1",
"mocha": "^2.4.5",
"nodemon": "^1.11.0",
"treeify": "^1.0.1"
}
}