-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.15 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
44
{
"name": "sourdough-toast",
"version": "0.1.0",
"description": "Delicious Sourdough Toast",
"main": "src/sourdough-toast.js",
"files": [
"src"
],
"scripts": {
"build": "npm run css",
"start": "serve",
"dev": "five-server --open=false & npm run css:watch",
"css": "tailwindcss -i example/example.css -o example/example.compiled.css",
"css:watch": "npm run css -- -w",
"test": "playwright test",
"test:serve": "serve -l 3030"
},
"keywords": [],
"author": "Mikkel Malmberg (@mikker)",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.42.1",
"@tailwindcss/cli": "^4.0.0-alpha.9",
"five-server": "^0.3.2",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"serve": "^14.2.1",
"tailwindcss": "^4.0.0-alpha.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikker/sourdough-toast.git"
},
"bugs": {
"url": "https://github.com/mikker/sourdough-toast/issues"
},
"homepage": "https://github.com/mikker/sourdough-toast#readme",
"dependencies": {},
"prettier": {
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}