forked from microsoft/datashaper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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
{
"name": "@data-wrangling-components/project",
"private": true,
"scripts": {
"preinstall": "npx only-allow yarn",
"postinstall": "husky install",
"clean": "yarn workspaces foreach -pv run clean",
"build": "yarn workspaces foreach -piv --topological-dev run build",
"start": "yarn workspaces foreach -piv run start",
"deploy": "yarn workspaces foreach -piv run deploy",
"lint": "essex lint --fix",
"git_is_clean": "essex git-is-clean",
"prettify": "essex prettify",
"test": "NODE_OPTIONS=--experimental-vm-modules yarn jest",
"ci": "run-s build lint test git_is_clean",
"publish": "yarn workspaces foreach --exclude '@data-wrangling-components/project' -pv npm publish --tolerate-republish --access public",
"update_sdks": "yarn dlx @yarnpkg/sdks vscode"
},
"prettier": "@essex/prettier-config",
"devDependencies": {
"@essex/eslint-config": "^20.0.0",
"@essex/eslint-plugin": "^20.0.0",
"@essex/jest-config": "^20.1.0",
"@essex/prettier-config": "^18.0.2",
"@essex/scripts": "^20.2.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-import-resolver-node": "^0.3.6",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"node-fetch": "^3.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"workspaces": [
"packages/*"
],
"packageManager": "yarn@3.1.1",
"dependenciesMeta": {
"@zip.js/zip.js@2.4.3": {
"unplugged": true
}
}
}