forked from jeremyong/paperbug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.08 KB
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": "paperbug",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"build": "node scripts/build.js",
"build-watch": "npm run build && onchange \"entries/**/*.md\" \"scripts/**/*.js\" -- node scripts/build.js",
"tailwind": "tailwindcss -m -i ./src/main.css -o ./dist/output.css",
"tailwind-watch": "tailwindcss -m -i ./src/main.css -o ./dist/output.css --watch",
"server": "live-server",
"start": "concurrently --kill-others \"npm run tailwind-watch\" \"npm run build-watch\" \"npm run server\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeremyong/paperbug.git"
},
"author": "Jeremy Ong",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeremyong/paperbug/issues"
},
"homepage": "https://github.com/jeremyong/paperbug#readme",
"devDependencies": {
"concurrently": "^7.1.0",
"eslint": "^8.12.0",
"live-server": "^1.1.0",
"markdown-it": "^12.3.2",
"markdown-it-front-matter": "^0.2.3",
"onchange": "^7.1.0",
"tailwindcss": "^3.0.23",
"yaml": "^1.10.2"
}
}