-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 947 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 947 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
{
"name": "ryanhill1.github.io",
"version": "0.1.0",
"description": "Personal website",
"main": "index.js",
"scripts": {
"dev": "live-server --port=8000 --open=/",
"dev:python": "python start_server.py",
"build": "python -m pip install build && python -m build --wheel && python -m pip install dist/*.whl --no-warn-script-location && python -m build_app",
"build:clean": "rimraf build dist && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.{html,css,js}'",
"format:check": "prettier --check '**/*.{html,css,js}'",
"prepare": "husky"
},
"keywords": [],
"author": "Ryan Hill",
"license": "CC BY-NC-SA 4.0",
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.3.0",
"husky": "^9.1.7",
"live-server": "^1.2.2",
"prettier": "^3.6.2",
"rimraf": "^6.1.2"
},
"type": "module"
}