-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.86 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
{
"name": "layout-projection",
"version": "0.0.0",
"description": "",
"private": true,
"author": "Char2s <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "tsc -b && npm run build -w packages/angular",
"build:watch": "concurrently -n tsc,angular \"tsc -b -w\" \"npm run build:watch -w packages/angular\"",
"lint": "concurrently npm:lint:*",
"lint:eslint": "eslint \"packages/*/src/**/*.ts\" --cache --fix",
"lint:prettier": "prettier --write \"{packages/*/src/**/*,*}.{html,css,less,scss,sass,js,json,md}\"",
"release:minor": "npm version minor -w packages/core -w packages/angular && npm run build && npm publish -w packages/core && cd packages/angular/dist && npm publish",
"release:patch": "npm version patch -w packages/core -w packages/angular && npm run build && npm publish -w packages/core && cd packages/angular/dist && npm publish",
"site:start": "npm start -w packages/site",
"site:build": "npm run build -w packages/site",
"site:deploy": "npm run deploy -w packages/site"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/TheNightmareX/layout-projection.git"
},
"bugs": {
"url": "https://github.com/TheNightmareX/layout-projection/issues"
},
"homepage": "https://github.com/TheNightmareX/layout-projection#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"concurrently": "^7.6.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lefthook": "^1.3.6",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.2"
},
"workspaces": [
"packages/*"
]
}