This repository has been archived by the owner on Jun 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.22 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "pwa",
"version": "0.0.0",
"scripts": {
"tslint": "tslint --project tsconfig.json",
"build": "tsc",
"build:watch": "npm run build -- -w",
"test": "node ./node_modules/karma-cli/bin/karma start ./karma.conf.js --single-run",
"test:watch": "node ./node_modules/karma-cli/bin/karma start ./karma.conf.js",
"rollup": "rollup -c",
"rollup-multiple": "rollup-multiple -c",
"bundle": "npm run rollup-multiple",
"bundle:watch": "npm run rollup-multiple -- -w",
"workbox": "workbox",
"swim": "workbox inject:manifest",
"swim:watch": "onchange 'dist/sw.js' -v -- npm run swim",
"static": "cpx 'src/static/**/*.*' 'dist/' -u -v",
"static:watch": "npm run static -- -w",
"clean": "rimraf build/; rimraf dist/",
"clean:all": "npm run clean; rimraf node_modules",
"predist": "npm-run-all clean tslint build test",
"dist": "npm-run-all bundle swim static",
"dist:watch": "npm-run-all -p -r static:watch bundle:watch",
"server": "http-server dist/",
"start": "npm-run-all -p -r static:watch bundle:watch server",
"deploy:gh-pages": "git subtree push --prefix gh-pages origin gh-pages",
"undeploy:gh-pages": "git push origin --delete gh-pages"
},
"devDependencies": {
"@types/assertion-error": "^1.0.30",
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.33",
"chai": "^3.5.0",
"cpx": "^1.5.0",
"http-server": "^0.10.0",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-requirejs": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"mocha": "^3.1.2",
"npm-run-all": "^4.1.2",
"onchange": "^3.2.1",
"requirejs": "^2.3.2",
"rimraf": "^2.6.2",
"rollup": "^0.36.3",
"rollup-multiple": "^0.41.6",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-typescript": "^0.8.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0",
"tslint": "^5.8.0",
"typescript": "2.3.x",
"workbox-cli": "^2.1.1"
},
"dependencies": {
"incremental-dom": "^0.5.1",
"workbox-sw": "2.1.2"
}
}