-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "website",
"description": "Lenra presentation website",
"authors": "Lenra",
"version": "0.0.0",
"scripts": {
"start": "lesta express",
"build": "lesta nginx"
},
"dependencies": {
"@lenra/lesta": "github:lenra-io/lesta"
},
"lesta": {
"languages": [
"en"
],
"nginx": {
"additionalContentSecurityPolicies": {
"default-src": [
"unsafe-inline",
"analytics.lenra.io",
"https://cdnjs.cloudflare.com/ajax/libs/prism/",
"https://unpkg.com/website-carbon-badges@1.1.3/",
"https://api.websitecarbon.com/",
"https://api.producthunt.com/",
"https://avatars.githubusercontent.com"
]
},
"rewriteRules": [
{
"from": "^/beta.html$",
"to": "/discover.html",
"type": "permanent"
}
],
"additionalLocationConfigs": {
"/ghorgamel/": [
"proxy_pass ${GHORGAMEL_URL};"
]
}
}
}
}