-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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": "@contentful/experience",
"private": true,
"author": "Contentful GmbH",
"license": "MIT",
"description": "Contentful Experience Framework",
"homepage": "https://github.com/contentful/experience-builder#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/contentful/experience-builder.git"
},
"bugs": {
"url": "https://github.com/contentful/experience-builder/issues"
},
"workspaces": [
"packages/**/*"
],
"scripts": {
"lint": "lerna run lint",
"tsc": "lerna run tsc",
"test": "lerna run --stream test",
"test:ci": "lerna run test:ci",
"test:coverage": "lerna run test:coverage",
"test:component": "lerna run test:component",
"prepare": "husky install",
"build": "lerna run build",
"start": "lerna run --stream start",
"prettier:check": "lerna run prettier:check",
"cm": "git-cz",
"depcruise": "lerna run depcruise"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"commitizen": "4.3.0",
"concurrently": "^8.2.2",
"eslint": "^8.52.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.0.10",
"lerna": "^8.0.2",
"lint-staged": "^15.0.1",
"nx": "^18.0.4",
"nx-cloud": "latest",
"prettier": "3.2.5"
},
"lint-staged": {
"*.{t,j}s?(x)": [
"prettier --write"
],
"*.{json,yml,html}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}