forked from parse-community/parse-server-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 961 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 961 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
37
38
39
{
"name": "LoopServer",
"version": "1.0.0",
"description": "Loop Parse API server using the parse-server module with parse-dashboard",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ParsePlatform/parse-server-example"
},
"license": "MIT",
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"dotenv": "^4.0.0",
"express": "~4.11.x",
"kerberos": "~0.0.x",
"mongodb": "^2.2.29",
"mongodb-bluebird": "^0.1.1",
"mongoose": "^4.11.1",
"parse": "~1.8.0",
"parse-dashboard": "^1.0.28",
"parse-server": "*",
"polyfill": "^0.1.0"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"engines": {
"node": "7.9.0"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}