-
Notifications
You must be signed in to change notification settings - Fork 685
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.03 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.03 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
35
36
{
"name": "belajarpython.com",
"version": "1.3.2",
"description": "Situs Open Source Tutorial Pemrograman Python Bahasa Indonesia",
"main": "index.js",
"scripts": {
"dev": "npm-run-all --parallel dev:*",
"dev:11ty": "eleventy --serve --watch",
"dev:css": "npx tailwindcss -i ./tailwind.css -o ./src/css/base.css --watch",
"build": "npm-run-all build:css build:11ty",
"build:11ty": "eleventy",
"build:css": "npx tailwindcss -i ./tailwind.css -o ./src/css/base.css --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/belajarpythoncom/belajarpython.com.git"
},
"keywords": [
"python",
"tutorial",
"indonesia"
],
"author": "Purwanto",
"license": "MIT",
"bugs": {
"url": "https://github.com/belajarpythoncom/belajarpython.com/issues"
},
"homepage": "https://belajarpython.com",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"markdown-it": "^14.0.0",
"markdown-it-prism": "^2.3.0",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.4.0"
}
}