-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.12 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "root",
"private": true,
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"clean": "pnpm -r clean && rimraf node_modules",
"start": "pnpm --parallel --filter em-plugin-init... --filter ee start",
"start:all": "pnpm --parallel -r start",
"ci:publish": "changeset publish",
"ci:version": "changeset version",
"build": "turbo run build",
"test": "turbo run test",
"lint": "eslint --fix --ext .js,.ts,.tsx packages/*/src/**/*",
"release": "pnpm build && pnpm ci:publish",
"codemod": "jscodeshift -t codemod/transform-entry-file.js packages/**/package.json"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-syntax-import-assertions": "^7.18.6",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.24.2",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.3",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"commitlint": "^17.0.3",
"cpr": "^3.0.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-define-config": "^1.6.0",
"eslint-plugin-prettier": "^4.2.1",
"fast-glob": "^3.2.11",
"father": "^4.0.2",
"find-up": "^6.3.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jscodeshift": "^0.13.1",
"json-estree-ast": "^1.0.1",
"lint-staged": "^13.0.3",
"module-alias": "^2.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"ts-node-dev": "^2.0.0",
"tsup": "^6.2.2",
"turbo": "^1.4.3",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{d.ts,json,md}": [
"prettier --write"
]
},
"pnpm": {
"packageExtensions": {
"inquirer-checkbox-plus-prompt": {
"dependencies": {
"chalk": "^4.0.0"
}
},
"inquirer-autocomplete-prompt": {
"dependencies": {
"inquirer": "^8.0.0"
}
}
}
}
}