-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "post-process-boilerplate",
"version": "1.0.1",
"main": "src/index.ts",
"description": "",
"scripts": {
"format:js": "npx prettier --write '**/*.{ts,js}'",
"format:md": "npx prettier --write --parser markdown '**/*.md'",
"format:yaml": "npx prettier --write --parser yaml '**/*.{yml,yaml}'",
"format": "yarn format:md && yarn format:yaml && yarn format:js",
"lint": "eslint src/* --ext .ts --fix",
"build": "./scripts/cleanup.sh && ts-node src/index.ts"
},
"author": "Adnan Asani",
"license": "MIT",
"nodemonConfig": {
"watch": [
".env",
"src"
],
"ext": "ts",
"ignore": [
"src/**/*.test.ts"
],
"exec": "npx ts-node -r dotenv/config ./src/index"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/common-tags": "^1",
"@types/node": "^20.12.7",
"@types/uuid": "^9",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5"
},
"dependencies": {
"common-tags": "^1.8.2",
"radash": "^12.1.0",
"uuid": "^9.0.1",
"yaml": "^2.4.1"
}
}