-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.83 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.83 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
{
"name": "flowmap.gl",
"private": true,
"packageManager": "yarn@4.5.0",
"description": "Flow map drawing layer for Deck.gl",
"main": "index.js",
"repository": "git@github.com:visgl/flowmap.gl.git",
"author": "Ilya Boyandin <ilya@boyandin.me>",
"license": "Apache-2.0",
"scripts": {
"start": "yarn build && yarn dev",
"dev": "yarn dev:example",
"clean": "shx rm -rf .turbo packages/*/.turbo packages/*/dist examples/*/.turbo examples/*/dist",
"dev:example": "turbo dev --filter='./examples/react-app' --filter './packages/*'",
"build:example": "turbo build --filter='./examples/react-app' --filter './packages/*'",
"build": "turbo run build --filter './packages/*' --concurrency 1",
"build:docs": "cd docs && yarn && yarn build",
"prettier": "prettier . --write",
"lint": "eslint . --fix",
"prepare": "./node_modules/.bin/husky install",
"deploy": "yarn build:example && gh-pages -d examples/react-app/dist/",
"bump": "lerna version --no-push --force-publish",
"publish-release": "yarn build && lerna publish from-package",
"publish-prerelease": "yarn build && lerna publish --dist-tag next from-package",
"typecheck": "lerna run --stream typecheck"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"tabWidth": 2,
"bracketSpacing": false,
"trailingComma": "all"
},
"workspaces": [
"packages/*",
"examples/*"
],
"dependencies": {
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"lerna": "^9.0.4",
"lint-staged": "^13.2.2",
"shx": "^0.3.4",
"turbo": "2.3.0"
},
"volta": {
"node": "22.22.0",
"yarn": "4.5.0"
}
}