forked from hosso/notion-custom-domain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.93 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "notion-custom-domain",
"version": "0.1.0",
"description": "Custom domains for your Notion pages",
"license": "MIT",
"author": "E. Hosso",
"type": "module",
"scripts": {
"#debug": "dotenv -- ts-node-dev --inspect --respawn src/index.ts",
"#dev": "dotenv -- ts-node-dev --respawn src/index.ts",
"debug": "dotenv -- nodemon --exec 'node --no-warnings=ExperimentalWarning --loader ts-node/esm --inspect' src/index.ts",
"deploy": "dotenv -e .env.staging -- vercel ${PAGE_URL:+-e PAGE_URL} ${GA_MEASUREMENT_ID:+-e GA_MEASUREMENT_ID}",
"deploy:prod": "dotenv -e .env.production -- yarn run deploy --prod",
"dev": "dotenv -- nodemon --exec 'node --no-warnings=ExperimentalWarning --loader ts-node/esm' src/index.ts",
"fix": "eslint --ext .ts . --fix && prettier --write --log-level silent \"**/*.{json,md}\" && sort-package-json",
"format-check": "eslint --ext .ts . && prettier --check --log-level silent \"**/*.{json,md}\" && tsc --noEmit",
"prepare": "husky",
"vc:dev": "vercel dev",
"vc:dev:debug": "vercel dev --debug"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.{json,md}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"dependencies": {
"clean-css": "^5.3.3",
"express": "^4.18.2",
"express-http-proxy": "^2.0.0",
"terser": "^5.29.2"
},
"devDependencies": {
"@types/clean-css": "^4.2.11",
"@types/express-http-proxy": "^1.6.6",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"dotenv-cli": "^7.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"sort-package-json": "^2.8.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3",
"vercel": "^33.5.3"
},
"engines": {
"node": ">= 18"
}
}