-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.16 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
{
"name": "nl.petergoes.link-dump",
"version": "1.0.0",
"devDependencies": {
"@babel/core": "7.0.0-beta.40",
"@babel/register": "7.0.0-beta.40",
"autoprefixer": "8.0.0",
"ava": "0.25.0",
"aws-sdk": "2.191.0",
"bluebird": "3.5.1",
"chalk": "2.3.1",
"cssnano": "3.10.0",
"is-gzip": "2.0.0",
"mime": "2.2.0",
"postcss": "6.0.17",
"postcss-custom-properties": "6.2.0",
"postcss-import": "11.1.0",
"puppeteer": "1.1.0",
"recursive-readdir": "2.2.1",
"rollup": "^0.53.2",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-svelte": "^4.0.0",
"rollup-plugin-uglify": "^2.0.1",
"serve": "^6.4.3",
"svelte": "^1.50.0"
},
"scripts": {
"build": "rollup --config",
"dev": "serve public & rollup --config --watch",
"start": "serve public",
"predeploy": "npm run test:e2e && workbox generate:sw",
"deploy": "node scripts/deploy.js",
"test:e2e": "ava test-e2e.js",
"test:unit": "ava test-unit.js"
},
"dependencies": {
"lodash": "4.17.5",
"mitt": "1.1.3",
"workbox-cli": "2.1.2"
}
}