-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.06 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.06 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
{
"name": "html5-tutorial",
"version": "1.0.0",
"description": "Walks through building different HTML5 layouts for AV systems",
"main": "app.js",
"scripts": {
"build": "webpack",
"archive": "ch5-cli archive -p project -d dist -o archive",
"onestep": "npm run build && npm run archive",
"huddle:build": "webpack --env source=ExampleRooms/HuddleRoom/html --env target=ExampleRooms/HuddleRoom",
"huddle:archive": "ch5-cli archive -p HuddleRoom -d ExampleRooms/HuddleRoom/dist -o archive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kielthecoder/HTML5-Tutorial.git"
},
"author": "Kiel Lofstrand",
"license": "MIT",
"bugs": {
"url": "https://github.com/kielthecoder/HTML5-Tutorial/issues"
},
"homepage": "https://github.com/kielthecoder/HTML5-Tutorial#readme",
"dependencies": {
"@crestron/ch5-crcomlib": "^1.1.0",
"@crestron/ch5-webxpanel": "^1.0.3",
"moment": "^2.29.1"
},
"devDependencies": {
"copy-webpack-plugin": "^9.0.1",
"webpack": "^5.47.0",
"webpack-cli": "^4.7.2"
}
}