-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 2.35 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
{
"name": "yarn-loom",
"version": "0.0.0",
"private": true,
"description": "Root package for running scripts",
"repository": {
"type": "git",
"url": "https://github.com/TranquilMarmot/YarnLoom.git"
},
"scripts": {
"install": "lerna exec -- npm install && lerna bootstrap",
"build:common": "lerna run --scope loom-common build",
"build:editor": "lerna run --scope loom-editor build",
"build:extension": "lerna run --scope yarn-spinner-loom build",
"build": "npm run build:common && npm run build:editor && npm run build:extension",
"clean": "lerna clean",
"test:common": "lerna run --scope loom-common test",
"test:extension": "lerna run --scope yarn-spinner-loom test",
"test:editor": "cross-env CI=true lerna run --scope loom-editor test",
"test": "cross-env CI=true lerna run test",
"package": "lerna run --scope yarn-spinner-loom package",
"publish": "npm run build && lerna run --scope yarn-spinner-loom publish",
"prettier": "prettier --write **/*.{js,ts,tsx,md,json}",
"lint:common": "lerna run --scope loom-common lint",
"lint:editor": "lerna run --scope loom-editor lint",
"lint:extension": "lerna run --scope yarn-spinner-loom lint",
"lint": "prettier --check **/*.{js,ts,tsx,md,json} && lerna run lint",
"version": "lerna version --no-push --no-git-tag-version"
},
"dependencies": {
"loom-common": "file:loom-common/out",
"loom-editor": "file:loom-editor",
"loom-extension": "file:loom-extension",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"typesafe-actions": "^5.1.0",
"@babel/core": "^7.13.0",
"semver": "7.5.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.1.9",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.0",
"@types/react": "^16.9.13",
"@types/react-d3-graph": "^2.6.0",
"@types/react-dom": "^16.9.13",
"@types/rimraf": "^3.0.0",
"@types/vscode": "^1.56.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"cross-env": "^7.0.3",
"jest": "26.6.0",
"lerna": "^4.0.0",
"prettier": "^2.3.0",
"react-test-renderer": "^16.4.1",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4",
"vsce": "^1.88.0"
},
"engines": {
"vscode": "^1.44.0"
}
}