This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.7 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
{
"name": "cast-of-characters",
"version": "1.0.0",
"jest": {
"verbose": true
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.16.0",
"@gannettdigital/storytelling-advertisements": "^0.0.19",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"babel-loader": "^8.0.6",
"cheerio": "^1.0.0-rc.12",
"d3-color": "^1.4.0",
"date-fns": "^2.22.1",
"date-fns-tz": "^1.1.4",
"esm": "^3.2.25",
"fastly-purge": "^1.0.1",
"firebase-admin": "^10.0.0",
"firebase-functions": "^3.16.0",
"gootenberg": "^1.6.2",
"graphql.js": "^0.6.7",
"html-minifier": "^4.0.0",
"image-size": "^1.0.0",
"jest": "^28.1.1",
"lodash.throttle": "^4.1.1",
"marked": "^4.0.19",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"rollup": "^2.70.2",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.49.0"
},
"dependencies": {
"sirv-cli": "^0.4.4"
},
"scripts": {
"autobuild": "rollup -c -w",
"build": "rollup -c",
"data": "node ./functions/update.js",
"deploy:dev": "GIT_BRANCH=dev sh ./deploy.sh",
"deploy:prod": "GIT_BRANCH=master sh ./deploy.sh --production",
"dev": "run-p start:dev autobuild",
"preview": "node ./functions/preview.js",
"start": "sirv public --single",
"start:dev": "sirv public --single --dev",
"static": "mkdir -p ./public && cp -rf src/static/* public/",
"update": "run-s data preview",
"uw": "node ./functions/ssr.js",
"test": "node --test"
},
"browserslist": "> 0.25%, not dead"
}