forked from crelder/recipe-shoppinglist-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1000 Bytes
/
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": "recipe-shoppinglist-generator",
"version": "0.7.3",
"description": "recipe-shoppinglist-generator",
"main": "index.html",
"devDependencies": {
"apply-loader": "^2.0.0",
"coffee-loader": "^4.0.0",
"coffeescript": "^2.3.2",
"css-loader": "^6.7.3",
"npm-run-all": "^4.1.5",
"pug": "^2.0.3",
"pug-cli": "^1.0.0-alpha6",
"pug-loader": "^2.4.0",
"style-loader": "^3.3.2",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amitkeret/recipe-shoppinglist-generator.git"
},
"scripts": {
"watch:js": "webpack",
"watch:html": "pug -o dist/ -w src/pug/index.pug",
"dev": "npm-run-all -p watch:*",
"build:js": "webpack --env prod",
"build:html": "pug -o dist/ src/pug/index.pug",
"build": "npm-run-all -s build:*"
},
"author": "amitkeret",
"license": "MIT",
"homepage": "https://github.com/amitkeret/recipe-shoppinglist-generator#readme"
}