-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.39 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.39 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "docstash-server",
"version": "1.0.0",
"description": "server for docstash",
"main": "index.js",
"scripts": {
"test": "mocha tools/testSetup.js --timeout 10000 \"test/**/*.test.js\" --reporter spec",
"test:watch": "npm run test -- --watch",
"start": "nodemon --inspect --exec babel-node src/index.js",
"break": "nodemon --inspect --debug-brk --exec babel-node src/index.js",
"build": "babel src -d dist",
"postbuild": "cp -r ./src/views/ ./dist/",
"pack": "babel src --out-file index.js",
"db": "mongod --dbpath ../data",
"serve": "node dist/index.js",
"predevss": "mongod --dbpath ../data",
"dev": "nodemon -x 'nodejs-dashboard babel-node' index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rakshans1/docstash.git"
},
"keywords": [
"cloud",
"storage"
],
"author": "Rakshan Shetty",
"license": "ISC",
"bugs": {
"url": "https://github.com/rakshans1/docstash/issues"
},
"homepage": "https://github.com/rakshans1/docstash#readme",
"dependencies": {
"async": "^2.1.4",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"cheerio": "^0.22.0",
"cli-table": "^0.3.1",
"compression": "^1.6.2",
"cors": "^2.7.1",
"ejs": "^2.5.5",
"eslint": "^3.12.2",
"express": "^4.14.0",
"formidable": "^1.0.17",
"googleapis": "^59.0.0",
"got": "^6.6.3",
"imagemagick-stream": "^4.1.1",
"jwt-simple": "^0.5.1",
"magnet-uri": "^5.1.5",
"mega": "^0.2.0",
"mime": "^1.3.4",
"mongoose": "^4.7.4",
"morgan": "^1.7.0",
"node-wit": "^4.2.0",
"nodemailer": "^2.7.0",
"parse-torrent": "^5.8.1",
"passport": "^0.3.2",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"randomstring": "^1.1.5",
"request": "^2.79.0",
"rimraf": "^2.5.4",
"sentiment": "^2.0.0",
"socket.io": "^1.7.2",
"socket.io-redis": "^1.1.1",
"ssh2-sftp-client": "^1.0.5",
"torrent-stream": "^1.0.3",
"twitter": "^1.7.0",
"zip-stream": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"eslint": "^3.3.1",
"eslint-plugin-import": "^1.13.0",
"nodejs-dashboard": "^0.1.1"
}
}