generated from solacecommunity/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.77 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
{
"name": "@solace-labs/solace-tools-typescript",
"version": "2.28.0",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": "16"
},
"scripts": {
"compile": "turbo run compile",
"build:force": "turbo run build --force && yarn build",
"build": "turbo run build && yarn typedoc && ./docs/make.sh",
"build:test": "turbo run build:test",
"test": "turbo run test",
"test:x": "turbo run test:x",
"dev:watch": "turbo run dev:watch",
"lint": "turbo run lint",
"lint:deprecated": "turbo run lint:deprecated",
"clean": "turbo run clean && rm -rf ./docs/source/_generated && rm -rf ./docs/build",
"changeset:create": "changeset",
"version:packages": "changeset version && yarn --mode=\"update-lockfile\"",
"publish:packages": "yarn build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@types/chai": "^4.2.18",
"@types/lodash": "^4.14.172",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.1",
"@types/node-fetch": "^2.6.2",
"@types/shelljs": "^0.8.8",
"@types/sinon": "^10.0.2",
"@types/supertest": "^2.0.11",
"chai": "^4.3.4",
"js-yaml": "^3.14.1",
"jsonschema": "^1.4.1",
"lerna": "^6.0.1",
"lodash": "^4.17.21",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"shelljs": "^0.8.4",
"sinon": "^11.1.2",
"supertest": "^6.1.3",
"ts-node": "^10.8.1",
"tsup": "^6.5.0",
"turbo": "^1.6.3",
"typedoc": "^0.23.23",
"typedoc-plugin-resolve-crossmodule-references": "^0.3.3",
"typescript": "^4.3.5",
"uuidv4": "^6.2.11"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}