-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 909 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 909 Bytes
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
{
"name": "pbserver",
"version": "1.4.1",
"description": "Paperback Parse Server",
"main": "index.js",
"dependencies": {
"express": "^4.11.2",
"human-time": "0.0.1",
"json-property-filter": "^1.2.0",
"kerberos": "0.0.23",
"kue": "^0.11.6",
"moment": "^2.18.1",
"mustache-express": "^1.2.4",
"parse": "^1.11.1",
"parse-server": "^2.7.4",
"request": "^2.85.0"
},
"scripts": {
"start": "node index.js",
"test": "mocha --timeout 5000",
"mongo": "mongod --dbpath mongo",
"dashboard": "parse-dashboard --config parse-dashboard-config.json",
"dev": "concurrently --kill-others \"npm run mongo\" \"npm run dashboard\" ",
"local": "heroku local"
},
"engines": {
"node": ">=4.3"
},
"devDependencies": {
"chai": "^3.5.0",
"concurrently": "^3.4.0",
"dotenv": "^4.0.0",
"mocha": "^3.3.0",
"rest": "^2.0.0"
}
}