-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.26 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
{
"name": "@uptechworks/appfit-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npx lerna run build --stream",
"lint": "npx lerna run lint --stream",
"lint:dry": "npx lerna run lint:dry --stream",
"package": "npm run build && npm pack",
"prettier": "npx prettier . --write",
"deploy:publish": "npx lerna publish from-package --yes",
"deploy:version": "npx lerna version",
"test": "jest --no-cache",
"test:bail": "jest --bail --no-cache",
"test:cov": "jest --coverage --no-cache",
"display-version": "echo $npm_package_version"
},
"author": "UpTech Works, LLC",
"license": "MIT",
"devDependencies": {
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"jest": "^29.7.0",
"lerna": "^8.1.2",
"parcel": "^2.12.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
}
}