forked from tabalinas/contact-book-offline
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
35 lines (35 loc) · 945 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
29
30
31
32
33
34
35
{
"name": "contact-book-offline",
"version": "1.0.0",
"description": "Contact Book sample application working Offline",
"main": "app.js",
"scripts": {
"serve": "npm-run-all -p serve-front serve-backend",
"serve-front": "http-server -o",
"serve-backend": "pouchdb-server -d db"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tabalinas/contact-book-offline.git"
},
"keywords": [
"serviceworker",
"offline",
"appcache"
],
"author": "Artem Tabalin <[email protected]> (http://tabalin.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tabalinas/contact-book-offline/issues"
},
"homepage": "https://github.com/tabalinas/contact-book-offline#readme",
"devDependencies": {
"http-server": "^0.9.0",
"npm-run-all": "^3.1.1",
"pouchdb-server": "^1.2.1"
},
"dependencies": {
"babel-standalone": "^6.19.0",
"pouchdb": "^6.0.7"
}
}