-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.91 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
{
"name": "pwasummit.org",
"version": "1.0.0",
"description": "Website for the PWA Summit",
"main": "index.js",
"scripts": {
"start": "run-s vite",
"prebuild": "run-s lint",
"build": "NODE_ENV=production run-p *:build",
"test": "run-s build",
"lint": "run-p *:lint",
"fix": "run-p *:fix",
"js:lint": "eslint .",
"js:fix": "eslint --fix .",
"css:lint": "stylelint src/sass",
"css:fix": "stylelint --fix src/sass",
"prettier:lint": "run-p prettier:*:lint",
"prettier:fix": "run-p prettier:*:fix",
"prettier:files:lint": "prettier -c .",
"prettier:njk:lint": "prettier -c '**/*.njk'",
"prettier:files:fix": "prettier --write .",
"prettier:njk:fix": "prettier --write '**/*.njk'",
"md:lint": "remark -qf .",
"vite": "vite --host",
"vite:build": "vite build --emptyOutDir",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PWA-Summit/pwasummit.org.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PWA-Summit/pwasummit.org/issues"
},
"homepage": "https://github.com/PWA-Summit/pwasummit.org#readme",
"devDependencies": {
"@11ty/eleventy-cache-assets": "^2.3.0",
"@11ty/eleventy-navigation": "^0.2.0",
"@emmetio/expand-abbreviation": "^0.7.3",
"@netlify/functions": "^0.7.2",
"autoprefixer": "^10.2.6",
"eleventy-plugin-svg-contents": "^0.7.0",
"eslint": "^7.26.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"markdown-it": "^12.0.6",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^7.1.0",
"markdown-it-attrs": "^4.0.0",
"markdown-it-container": "^3.0.0",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-figure": "^0.2.0",
"markdown-it-footnote": "^3.0.2",
"markdown-it-header-sections": "^1.0.0",
"markdown-it-kbd": "^2.2.2",
"markdown-it-sup": "^1.0.0",
"markdown-it-video": "^0.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"remark": "^13.0.0",
"remark-cli": "^9.0.0",
"remark-frontmatter": "^3.0.0",
"remark-lint": "^8.0.0",
"remark-lint-heading-increment": "^2.0.1",
"remark-lint-prohibited-strings": "^2.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"sass": "^1.32.13",
"slugify": "^1.6.0",
"stylelint": "^13.13.1",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^22.0.0",
"uslug": "^1.0.4",
"vite": "^3.1.4",
"vite-plugin-eleventy": "^0.0.9",
"vite-plugin-pwa": "^0.13.1"
},
"dependencies": {
"cloudinary": "^1.26.2",
"dotenv": "^10.0.0",
"idb-keyval": "^5.1.3",
"workbox-recipes": "^6.1.5",
"workbox-routing": "^6.1.5",
"workbox-strategies": "^6.1.5"
},
"volta": {
"node": "14.16.1"
}
}