-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 988 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 988 Bytes
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
{
"name": "chez-chef",
"version": "1.0.0",
"description": "A type-safe recipe finder, built with Elm",
"scripts": {
"postinstall": "elm-tooling install",
"test": "npx cypress open",
"dev": "elm-live src/Main.elm --pushstate --start-page=./index.html -- --output=./build/main.js --debug",
"build": "elm make src/Main.elm --optimize --output=./build/main.js",
"tailwind:watch": "npx tailwindcss -i ./src/main.css -o ./build/stylesheet/main.css --watch",
"tailwind:build": "npx tailwindcss -i ./src/main.css -o ./build/stylesheet/main.css --minify",
"bundle": "npm run build && npm run tailwind:build"
},
"keywords": [
"Elm",
"Receipe Finder",
"SPA"
],
"author": "Maurizio Vacca",
"license": "MIT",
"devDependencies": {
"@tailwindcss/cli": "^4.1.7",
"cypress": "^14.4.0",
"elm-live": "^4.0.2",
"elm-tooling": "^1.15.1",
"tailwindcss": "^4.1.7"
},
"volta": {
"node": "20.18.1",
"npm": "10.3.0"
}
}