-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.02 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.02 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
{
"name": "backforge-workspace",
"private": true,
"version": "0.0.0",
"author": "Raj",
"repository": {
"type": "git",
"url": "https://github.com/Codewithevilxd/backforge.git"
},
"scripts": {
"build": "pnpm --filter backforge-core run build && pnpm --filter backforge-cli run build",
"build:core": "pnpm --filter backforge-core run build",
"test": "pnpm --filter backforge-core run test",
"lint": "eslint \"packages/backforge-core/src/**/*.ts\"",
"lint:fix": "eslint \"packages/backforge-core/src/**/*.ts\" --fix",
"format": "prettier --write \"**/*.{ts,js,json,md}\" \"!dist\" \"!node_modules\" \"!pnpm-lock.yaml\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\" \"!dist\" \"!node_modules\" \"!pnpm-lock.yaml\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.0"
},
"dependencies": {
"@types/ejs": "^3.1.5"
}
}