forked from Sonat-Consulting/fagdag-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1023 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
36
37
38
{
"name": "fagdag-pwa",
"version": "1.0.0",
"description": "Sonat fagdag, august 2017 - Progressive Web Apps",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"watch": "webpack --watch",
"start": "webpack-dev-server --open",
"deploy": "npm run build && NODE_DEBUG=gh-pages gh-pages -d dist"
},
"keywords": [
"PWA",
"Service Worker",
"Offline"
],
"author": "Jonas Lundeland",
"license": "ISC",
"dependencies": {
"preact": "^8.2.1",
"preact-router": "^2.5.5",
"superagent": "^3.5.2",
"superagent-as-promised": "^4.0.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.0",
"classnames": "^2.2.5",
"gh-pages": "^1.0.0",
"webpack": "^3.5.3",
"webpack-dev-server": "^2.7.1"
}
}