-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
34 lines (34 loc) · 1.21 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
{
"name": "curriculum",
"version": "1.0.0",
"description": "The curriculum platform",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "dotenv -e ../.env -- hugo server --environment development",
"build:dev": "hugo mod vendor && dotenv -e ../.env -- hugo --environment development",
"build:audit": "HUGO_MINIFY_TDEWOLFF_HTML_KEEPCOMMENTS=true HUGO_ENABLEMISSINGTRANSLATIONPLACEHOLDERS=true hugo mod vendor && dotenv -e ../.env -- hugo --environment production && grep -inorE '<\\!-- raw HTML omitted -->|ZgotmplZ|\\[i18n\\]|\\(<nil>\\)|(<nil>)|hahahugo' public/"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodeYourFuture/curriculum/issues"
},
"homepage": "https://github.com/CodeYourFuture/curriculum#readme",
"dependencies": {
"@netlify/functions": "^1.6.0",
"cookie": "^0.5.0",
"dotenv": "^16.3.1",
"joi": "^17.9.2",
"lodash": "^4.17.21",
"octokit": "^3.1.2",
"prettier": "^2.8.8",
"prettier-plugin-go-template": "^0.0.13"
},
"devDependencies": {
"@types/cookie": "^0.5.1",
"@types/lodash": "^4.14.196",
"dotenv-cli": "^7.3.0"
}
}