forked from GoogleChrome/web.dev
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.61 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
{
"name": "web.dev-frontend",
"version": "1.0.0",
"scripts": {
"clean": "rm -rf dist",
"lint": "gulp lint-js && gulp lint-scss",
"build:gulp": "npx gulp build",
"build:eleventy": "eleventy",
"watch:gulp": "npx gulp build && gulp watch",
"watch:eleventy": "eleventy --watch",
"start": "node ./server.js",
"build": "npm run clean && npm run lint && npm run build:eleventy && npm run build:gulp",
"dev": "npm run clean && npm-run-all -r --parallel watch:eleventy watch:gulp start",
"debug": "node --inspect-brk ./node_modules/.bin/eleventy",
"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"
},
"devDependencies": {
"@11ty/eleventy": "^0.7.1",
"@11ty/eleventy-plugin-rss": "^1.0.6",
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.1",
"ansi-colors": "^3.2.4",
"chalk": "^2.4.2",
"common-tags": "^1.8.0",
"eslint": "^5.10.0",
"eslint-config-google": "^0.11.0",
"eslint-plugin-prettier": "^3.0.0",
"gulp": "^4.0.0",
"gulp-eslint": "^5.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-sass-lint": "^1.4.0",
"gulp-sourcemaps": "^2.6.5",
"husky": "^1.3.1",
"luxon": "^1.12.1",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.0.2",
"mkdirp": "^0.5.1",
"node-fetch": "^2.3.0",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"sass-lint": "^1.12.1",
"slugify": "^1.3.4",
"yaml-front-matter": "^4.0.0"
}
}