-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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
{
"name": "devcontainer-nodejs-template",
"version": "1.0.1",
"author": {
"name": "위정훈 (gitgitWi)",
"email": "rs1kflvx@duck.com"
},
"readme": "https://github.com/gitgitWi/devcontainer-nodejs-template/blob/main/README.md",
"qna": "https://github.com/gitgitWi/devcontainer-nodejs-template/discussions",
"workspaces": {
"packages": [
"packages/**"
]
},
"keywords": [
"nodejs",
"typescript",
"pnpm-workspaces",
"devcontainer"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@8.6.1",
"scripts": {
"format": "prettier --write ./ --config .prettierrc",
"clean": "turbo run clean && rm -rf node_modules && rm -rf .pnpm-store",
"clean:build": "turbo run clean:build",
"preinstall": "npx only-allow pnpm",
"prebuild": "npx only-allow pnpm"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"dependencies": {
"turbo": "^1.10.2"
}
}