-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.73 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "alwatr-fract",
"description": "Fract is an open source App Development Framework that makes it easy to build top quality Native and Progressive Web Apps with web technologies.",
"repository": "https://github.com/Alwatr/fract",
"author": "S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com)",
"license": "MIT",
"type": "module",
"private": true,
"engines": {
"node": ">=18.16.0",
"yarn": ">=4.0.0"
},
"workspaces": [
"packages/*",
"demo"
],
"scripts": {
"l": "yarn run lint",
"b": "yarn run build",
"br": "run-s build build:r",
"c": "yarn run clean",
"cb": "run-s clean build",
"s": "run-s build serve",
"w": "yarn run watch",
"f": "yarn run format",
"fl": "yarn run format:eslint",
"fp": "yarn run format:prettier",
"rl": "run-s pull clean build release",
"upd": "yarn set version latest; yarn up '*' -i; yarn up '*' -R; yarn dlx @yarnpkg/sdks vscode;",
"lint": "run-s 'lint:*'",
"lint:ts": "eslint . --config .eslintrc.json --ext .ts",
"build": "run-s build:ts build:r",
"build:ts": "tsc --build",
"build:r": "lerna run build",
"format": "run-s format:prettier format:eslint",
"format:eslint": "yarn run lint:ts --fix",
"format:prettier": "prettier . --ignore-path .gitignore --write",
"clean": "git clean -d -x -f --exclude=node_modules --exclude='*.env' --exclude=_data --exclude='.pnp*' --exclude=.yarn",
"serve": "wds",
"watch": "run-p 'watch:*' serve",
"watch:ts": "yarn run build:ts --watch --preserveWatchOutput",
"pull": "git pull",
"release": "lerna version",
"publish": "lerna publish from-package"
},
"devDependencies": {
"@alwatr/style": "workspace:^",
"@deanc/esbuild-plugin-postcss": "^1.0.2",
"@lerna-lite/changed": "^3.2.1",
"@lerna-lite/cli": "^3.2.1",
"@lerna-lite/diff": "^3.2.1",
"@lerna-lite/exec": "^3.2.1",
"@lerna-lite/publish": "^3.2.1",
"@lerna-lite/run": "^3.2.1",
"@lerna-lite/version": "^3.2.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@web/dev-server": "^0.4.2",
"autoprefixer": "^10.4.17",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-lit": "^1.11.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.34",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.0",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"ts-lit-plugin": "^2.0.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"workbox-build": "^7.0.0"
},
"packageManager": "[email protected]"
}