-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"name": "web-and-react-intro",
"version": "1.0.0",
"description": "Itera's Web and React course",
"homepage": "https://github.com/Itera/web-and-react-intro",
"license": "MIT",
"scripts": {
"start": "nodemon --exec 'npm run start:nowatch' --watch ./src --watch ./static --ext js,html,scss",
"start:nowatch": "parcel ./src/index.html",
"gen:diagrams": "rm -rf ./static/img && plantuml ./src/diagrams/*.puml -tsvg -o ../../static/img",
"build": "parcel build ./src/index.html --public-url .",
"server": "node ./src/local-server.js"
},
"contributors": [
{
"name": "Tin Anh Nguyen",
"email": "tin.anh.nguyen@itera.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/Itera/web-and-react-intro.git"
},
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"reveal",
"slides",
"presentation",
"itera",
"react",
"web"
],
"dependencies": {
"@fastify/cors": "^8.2.0",
"canvas-confetti": "^1.5.1",
"fastify": "^4.12.0",
"reveal.js": "^4.3.1"
},
"devDependencies": {
"@parcel/transformer-sass": "^2.7.0",
"nodemon": "^2.0.15",
"parcel": "^2.3.2",
"parcel-reporter-static-files-copy": "^1.3.4"
},
"browserslist": "> 0.5%, IE 11, not dead",
"staticFiles": {
"staticPath": "static",
"staticOutPath": ".",
"watcherGlob": "**"
}
}