-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.02 KB
/
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
{
"name": "offline-first-example",
"version": "1.0.0",
"description": "Basic offline first example intended for use on a static web app on iOS that includes HTML5 video.",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"build": "npm run lint && rm -rf dist && webpack -p && rm dist/appcache/manifest.html && cp -r src/video dist",
"lint": "standard src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/persianturtle/offline-first-example.git"
},
"author": "Raphael Rafatpanah",
"license": "ISC",
"bugs": {
"url": "https://github.com/persianturtle/offline-first-example/issues"
},
"homepage": "https://github.com/persianturtle/offline-first-example#readme",
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"html-webpack-plugin": "^2.28.0",
"idb-keyval": "^2.3.0",
"standard": "^8.6.0",
"webpack": "^2.2.1",
"whatwg-fetch": "^2.0.2"
}
}