forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 854 Bytes
/
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
{
"name": "rxdb-example-vanilla",
"version": "1.1.0",
"description": "",
"scripts": {
"cp": "rimraf ./dist/ && ncp ../../dist/ ./dist/",
"start": "npm run cp && concurrently \"npm run server\" \"npm run serve\"",
"serve": "ws -p 20202 -n",
"server": "pouchdb-server --host 0.0.0.0 -p 10102 -m -d /tmp/pouchdb-server/ -n true",
"refresh": "rimraf -r node_modules/rxdb/ && npm i ",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "pubkey",
"license": "ISC",
"dependencies": {
"concurrently": "^3.5.0",
"local-web-server": "2.2.1",
"normalize.css": "7.0.0",
"pouchdb-adapter-http": "^6.3.4",
"pouchdb-adapter-localstorage": "^6.3.4",
"pouchdb-replication": "^6.3.4",
"pouchdb-server": "^2.3.7"
},
"devDependencies": {
"ncp": "2.0.0",
"rimraf": "2.6.1"
}
}