-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.91 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.91 KB
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
{
"name": "rete-javascript-tools",
"private": true,
"author": "Retentioneering Team <team@retentioneering.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/retentioneering/rete-javascript-tools.git"
},
"bugs": {
"url": "https://github.com/retentioneering/rete-javascript-tools/issues"
},
"homepage": "https://github.com/retentioneering/rete-javascript-tools",
"scripts": {
"build": "lerna run --stream --concurrency 1 --sort build",
"build:size": "lerna run --stream --concurrency 1 --sort build:size",
"clean": "lerna run --parallel clean",
"clean:dist": "lerna run --parallel clean:dist",
"clean:coverage": "lerna run --parallel clean:coverage",
"clean:file-size-cache": "lerna run --parallel clean:file-size-cache",
"lint": "lerna run --parallel lint",
"type-check": "lerna run --parallel type-check",
"test": "lerna run --parallel test",
"test:coverage": "lerna run --parallel test:coverage",
"test:e2e": "echo \"WORK IN PROGRESS\"",
"prepublish": "lerna run prepublish",
"postinstall": "husky install"
},
"engines": {
"node": ">=16",
"yarn": ">=3"
},
"workspaces": [
"internal/*",
"packages/*",
"tests/*"
],
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@types/node": "18.11.3",
"@typescript-eslint/eslint-plugin": "5.40.1",
"@typescript-eslint/parser": "5.40.1",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-unicorn": "44.0.2",
"husky": "8.0.1",
"lerna": "5.5.4",
"prettier": "2.7.1",
"pretty-quick": "3.1.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"packageManager": "yarn@3.2.4"
}