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
50 lines (50 loc) · 1.55 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.55 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
{
"name": "parse-server-example",
"version": "1.4.1",
"description": "An example Parse API server using the parse-server module",
"main": "index.js",
"repository": "https://github.com/daggerok/parse-server-example",
"license": "MIT",
"dependencies": {
"express": "4.15.4",
"kerberos": "0.0.23",
"parse": "1.10.0",
"parse-server": "2.6.1"
},
"livereload": {
"exclusions": [
"app/bower_components",
"bower_components",
"node_modules",
"*.json",
"README.*",
"yarn.lock"
]
},
"config": {
"bower_directory": "app/bower_components"
},
"scripts": {
"postinstall": "bower install",
"serve": "docker-compose --project-name=all -f docker-compose-all.yml up -d",
"start": "yarn -i; npm-run-all -p start:*",
"start:compose-up": "docker-compose up -d",
"start:server": "sleep 3; node index.js",
"start:dashboard": "sleep 5; parse-dashboard --appId appId --masterKey masterKey --serverURL \"http://localhost:1337/parse\" --appName optionalAppName",
"start:frontend": "npm-run-all -p start:frontend:*",
"start:frontend:livereload": "livereload",
"start:frontend:serve": "serve --cors --single --port 3000 ./app",
"stop": "docker-compose down -v && docker-compose --project-name=all -f docker-compose-all.yml down -v"
},
"engines": {
"node": ">=4.3"
},
"devDependencies": {
"bower": "1.8.2",
"livereload": "0.6.2",
"npm-run-all": "4.1.1",
"parse-dashboard": "1.1.0",
"serve": "6.1.0"
},
"author": "Maksim Kostromin <[email protected]>"
}