This repository has been archived by the owner on Sep 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.75 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
{
"name": "mobilejazz-harmony-typescript",
"version": "0.0.0",
"private": true,
"description": "Mobile Jazz Harmony framework for TypeScript",
"author": "Mobile Jazz",
"license": "Apache-2.0",
"repository": "github:mobilejazz/harmony-typescript",
"homepage": "https://github.com/mobilejazz/harmony-typescript",
"bugs": "https://github.com/mobilejazz/harmony-typescript/issues",
"readmeFilename": "README.md",
"engines": {
"node": "16.x",
"npm": "8.x"
},
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces --hoist --force-local",
"check-deps": "npm outdated && lerna exec -- npm outdated && npm audit && lerna exec -- npm audit",
"clean": "lerna clean",
"prebuild": "npm run validate && npm run format",
"build": "lerna run build",
"watch": "lerna watch -- lerna run build",
"lint": "lerna run lint",
"format": "prettier --write .",
"validate": "npm run lint && npm test",
"prepublish": "npm run build",
"publish": "lerna publish --force-publish --no-private",
"test": "jest --silent",
"test:watch": "jest --watch",
"prepare": "husky install",
"setup": "npm ci && npm run bootstrap && npm run build"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lerna": "6.4.*",
"nx": "^14.7.13",
"prettier": "2.7.1",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2"
}
}