-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 916 Bytes
/
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
{
"name": "from-webpack-to-web-apis",
"version": "1.0.0",
"description": "Slides and demo for my Cloud RI meetup talk",
"type": "module",
"author": "Owen Buckley <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/thescientist13/from-webpack-to-web-apis.git"
},
"keywords": [
"Web Components",
"web standards",
"web dev",
"presentation",
"Cloud RI"
],
"scripts": {
"clean": "rimraf ./public ./.greenwood",
"dev": "greenwood develop",
"demo": "live-server ./src/demo",
"build": "greenwood build",
"start": "npm run serve",
"serve": "npm run clean && npm run build && greenwood serve"
},
"devDependencies": {
"@greenwood/cli": "~0.29.0",
"@mapbox/rehype-prism": "^0.8.0",
"greenwood-starter-presentation": "~0.8.1",
"live-server": "^1.2.2",
"rimraf": "^3.0.2"
}
}