forked from GoogleChrome/web.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 5.48 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "web.dev",
"version": "2.0.0",
"scripts": {
"build": "npm-run-all clean sass eleventy gulp rollup",
"clean": "rm -rf dist",
"coverage:integration": "c8 npm-run-all test:lib test:unit test:integration",
"coverage:unit": "c8 npm run test:unit",
"coverage": "npm-run-all coverage:unit coverage:integration",
"debug:eleventy": "node --inspect-brk ./node_modules/.bin/eleventy",
"debug:test:integration": "node --inspect-brk ./node_modules/.bin/mocha ./test/integration",
"debug:test:lib": "TEST_MODE=debug npm-run-all clean rollup --parallel watch:rollup karma",
"debug:test:unit": "node --inspect-brk ./node_modules/.bin/mocha ./test/unit",
"deploy": "ELEVENTY_ENV=prod npm run build && node index-algolia.js && gcloud app deploy --project web-dev-production-1 --quiet",
"dev": "npm-run-all clean rollup sass --parallel --race watch:rollup watch:sass watch:eleventy watch:gulp start",
"eleventy": "eleventy --quiet",
"gulp": "npx gulp build",
"karma": "karma start",
"lint:js": "eslint .",
"lint:md": "remark -q -f .",
"lint:scss": "sass-lint -v -q",
"lint": "npm-run-all lint:md lint:scss lint:js",
"percy": "PERCY=true npm-run-all build --parallel --race start snapshots",
"precommit": "node ./tools/update-updated/index.js",
"rollup": "eleventy --input src/site/content/sw-partial-layout.njk; node build.js",
"sass": "node ./compile-css.js src/styles/all.scss dist/app.css",
"snapshots": "percy exec --config ./tools/percy/.percy.conf.yml -- node tools/percy/snapshots.js",
"stage:personal": "ELEVENTY_ENV=dev npm run build && gcloud app deploy --project web-dev-staging --quiet --no-promote",
"stage": "ELEVENTY_ENV=dev npm run build && gcloud app deploy --project web-dev-staging --quiet",
"start": "node ./server.js",
"test:integration": "mocha ./test/integration",
"test:lib": "npm-run-all clean rollup karma",
"test:unit": "mocha ./test/unit && npm run test:lib",
"test": "npm run test:unit && npm run test:lib && npm run test:integration",
"watch:eleventy": "eleventy --watch --quiet",
"watch:gulp": "npx gulp build && gulp watch",
"watch:rollup": "chokidar \"src/lib/**/*.{js,scss}\" -c \"npm run rollup\"",
"watch:sass": "chokidar \"src/styles/**/*.scss\" -c \"npm run sass\"",
"watch:test:lib": "TEST_MODE=dev npm-run-all clean rollup --parallel watch:rollup karma"
},
"license": "Apache-2.0",
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.3.0",
"algoliasearch": "^4.1.0",
"babel-eslint": "^10.0.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"escape-string-regexp": "^2.0.0",
"express": "^4.17.1",
"focus-visible": "^5.0.2",
"idb-keyval": "^3.2.0",
"iso-639-1": "^2.1.0",
"js-yaml": "^3.13.1",
"lit-element": "^2.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-virtual": "^1.0.1",
"terser": "^4.6.4",
"unistore": "^3.4.1",
"wicg-inert": "^3.0.1"
},
"devDependencies": {
"@11ty/eleventy": "^0.10.0",
"@11ty/eleventy-plugin-rss": "^1.0.7",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@percy/script": "^1.0.3",
"@surma/rollup-plugin-off-main-thread": "^1.4.1",
"ansi-colors": "^3.2.4",
"autoprefixer": "^9.6.1",
"c8": "^7.1.0",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.3",
"chokidar-cli": "^1.2.2",
"common-tags": "^1.8.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.11.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.0",
"gulp-imagemin": "^7.1.0",
"gulp-rename": "^1.4.0",
"husky": "^4.2.3",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^7.0.0",
"intl-list-format": "^1.0.3",
"karma": "^4.2.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^2.0.2",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"luxon": "^1.12.1",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.0.2",
"markdown-it-attrs": "^3.0.0",
"mocha": "^6.2.0",
"moment": "^2.24.0",
"node-fetch": "^2.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.27",
"prettier": "^1.18.2",
"proxyquire": "^2.1.3",
"remark-cli": "^7.0.0",
"remark-frontmatter": "^1.3.2",
"remark-lint": "^6.0.5",
"remark-lint-are-links-valid": "^1.0.3",
"remark-lint-no-duplicate-headings-in-section": "^1.0.4",
"remark-preset-lint-markdown-style-guide": "^2.1.3",
"remove-markdown": "^0.3.0",
"rollup": "^1.16.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.5.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"sass": "^1.22.7",
"sass-lint": "^1.12.1",
"scroll-to-bottomjs": "^1.1.0",
"slugify": "^1.3.4",
"through2": "^3.0.1",
"unified-lint-rule": "^1.0.5",
"unist-util-map": "^1.0.5",
"unist-util-to-list-of-char": "^0.1.2",
"unist-util-visit": "^1.4.1",
"workbox-build": "^5.1.2",
"workbox-cacheable-response": "^5.1.2",
"workbox-expiration": "^5.1.2",
"workbox-google-analytics": "^5.1.2",
"workbox-precaching": "^5.1.2",
"workbox-routing": "^5.1.2",
"workbox-strategies": "^5.1.2",
"yaml-front-matter": "^4.0.0"
},
"optionalDependencies": {
"node-sass": "^4.12.0"
},
"private": true,
"browserslist": [
"last 2 versions",
"not ie <= 11"
]
}