forked from visgl/flowmap.gl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.67 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.67 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
{
"name": "flowmap.gl",
"private": true,
"description": "Flow map drawing layer for Deck.gl",
"main": "index.js",
"repository": "git@github.com:FlowmapBlue/flowmap.gl.git",
"author": "Ilya Boyandin <ilya@boyandin.me>",
"license": "Apache-2.0",
"scripts": {
"start": "yarn dev",
"build": "yarn build:data && yarn build:layers",
"dev": "concurrently \"npm:dev:*\"",
"dev:example": "yarn workspace @flowmap.gl/react-app start",
"dev:data": "yarn workspace @flowmap.gl/data dev",
"dev:layers": "yarn workspace @flowmap.gl/layers dev",
"build:example": "yarn workspace @flowmap.gl/react-app build",
"build:data": "yarn workspace @flowmap.gl/data build",
"build:docs": "cd docs && yarn && yarn build",
"build:layers": "yarn workspace @flowmap.gl/layers build",
"prettier": "prettier . --write",
"lint": "eslint . --fix",
"prepare": "husky install",
"deploy": "yarn build:example && gh-pages -d examples/react-app/build/",
"bump": "lerna version --no-push --force-publish",
"publish-prerelease": "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": "^2.6.2",
"typescript": "^4.6.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"concurrently": "^7.2.0",
"eslint": "^8.15.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1"
}
}