-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.39 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
{
"name": "elixirconfafrica",
"version": "1.0.0",
"description": "Elixir Conference in Africa",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "parcel index.html",
"start": "node server.js",
"build": "parcel build --public-url . index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beamkenya/ElixirConfAfrica.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/beamkenya/ElixirConfAfrica/issues"
},
"homepage": "https://github.com/beamkenya/ElixirConfAfrica#readme",
"dependencies": {
"connect-history-api-fallback": "^1.6.0",
"express": "^4.17.1",
"jquery": "^3.5.1",
"ol": "^6.5.0",
"parcel-plugin-pwa-manifest": "^3.0.10",
"popper.js": "^1.16.1",
"serve-static": "^1.14.1"
},
"devDependencies": {
"parcel-bundler": "1.12.3",
"parcel-plugin-static-files-copy": "^2.5.1"
},
"engines": {
"node": "12.x"
},
"pwaManifest": {
"name": "Elixir Conf Africa",
"shortName": "Elixir Conference in Africa",
"startURL": "./index.html",
"display": "standalone",
"backgroundColor": "#AD3989",
"themeColor": "#fff",
"generateIconOptions": {
"baseIcon": "assets/images/Square-elixir-logo.png",
"sizes": [
192,
384,
512
],
"genFavicons": false
}
}
}