forked from GoogleChrome/web.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 3 KB
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
{
"name": "web.dev-frontend",
"version": "2.0.0",
"scripts": {
"clean": "rm -rf dist",
"lint:js": "eslint src/lib/** --no-ignore",
"lint:scss": "sass-lint -c .sasslintrc -v -q",
"build:gulp": "npx gulp build",
"build:eleventy": "eleventy",
"build:rollup": "rollup -c rollup.config.js",
"build:sass": "./sass.sh src/styles/all.scss dist/app.css",
"watch:gulp": "npx gulp build && gulp watch",
"watch:eleventy": "eleventy --watch",
"watch:rollup": "chokidar \"src/lib/**/*.js\" -c \"npm run build:rollup\"",
"watch:sass": "chokidar \"src/{lib,styles}/**/*.scss\" -c \"npm run build:sass\"",
"debug:eleventy": "node --inspect-brk ./node_modules/.bin/eleventy",
"karma": "karma start",
"test": "run-s clean build:rollup karma",
"watch:test": "TEST_MODE=dev npm-run-all clean build:rollup --parallel watch:rollup karma",
"debug:test": "TEST_MODE=debug npm-run-all clean build:rollup --parallel watch:rollup karma",
"start": "node ./server.js",
"lint": "npm-run-all -p -c lint:js lint:scss",
"build": "ELEVENTY_ENV=prod npm-run-all lint clean build:rollup build:sass build:eleventy build:gulp",
"dev": "npm-run-all clean build:rollup build:sass --parallel --race watch:rollup watch:sass watch:eleventy watch:gulp start",
"stage": "npm run build && gcloud app deploy --project web-dev-staging --quiet",
"deploy": "ELEVENTY_ENV=prod npm run build && node lib/index.js"
},
"license": "Apache-2.0",
"dependencies": {
"express": "^4.16.4",
"firebase": "^6.2.4",
"lit-element": "^2.2.0",
"navaid": "^1.0.5",
"unistore": "^3.4.1"
},
"devDependencies": {
"@11ty/eleventy": "^0.8.3",
"@11ty/eleventy-plugin-rss": "^1.0.6",
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.3",
"ansi-colors": "^3.2.4",
"chalk": "^2.4.2",
"chokidar-cli": "^1.2.2",
"common-tags": "^1.8.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.11.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"gulp": "^4.0.0",
"gulp-if": "^2.0.2",
"gulp-imagemin": "^5.0.3",
"gulp-rename": "^1.4.0",
"husky": "^3.0.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^7.0.0",
"karma": "^4.2.0",
"karma-chrome-launcher": "^3.0.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"luxon": "^1.12.1",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.0.2",
"mkdirp": "^0.5.1",
"mocha": "^6.2.0",
"node-fetch": "^2.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"rollup": "^1.16.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-entrypoint-hashmanifest": "^0.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-off-main-thread": "^1.1.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-sourcemaps": "^0.4.2",
"sass": "^1.22.7",
"sass-lint": "^1.12.1",
"slugify": "^1.3.4",
"yaml-front-matter": "^4.0.0"
},
"optionalDependencies": {
"node-sass": "^4.12.0"
}
}