-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "hugojs",
"version": "1.0.0",
"description": "HugoJS online Hugo interpreter",
"scripts": {
"build": "webpack --mode=production && zip -j hugojs.zip dist/play/*",
"compile": "cd he && docker run --rm -v $(pwd):/src -u $(id -u):$(id -g) emscripten/emsdk:2.0.2 emmake make && cp he.js he.wasm ../assets",
"start": "webpack serve --mode=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juhana/hugojs.git"
},
"author": "Juhana Leinonen",
"license": "MIT",
"bugs": {
"url": "https://github.com/juhana/hugojs/issues"
},
"homepage": "https://github.com/juhana/hugojs#readme",
"devDependencies": {
"@types/node": "17.0.27",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "10.2.4",
"css-loader": "6.7.1",
"eslint": "8.14.0",
"style-loader": "3.3.1",
"ts-loader": "9.2.9",
"typescript": "4.6.3",
"webpack": "5.72.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.8.1"
},
"dependencies": {
"custom-event-polyfill": "^1.0.7"
}
}