-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 897 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 897 Bytes
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
{
"name": "ocular-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"modules/*"
],
"scripts": {
"bootstrap": "yarn && ocular-bootstrap && npm run build",
"build": "ocular-clean && tspc -b modules/dev-tools/tsconfig.json && ocular-build",
"cover": "ocular-test cover",
"lint": "ocular-lint",
"test": "ocular-test node",
"publish-beta": "npm run build && ocular-publish beta",
"publish-prod": "npm run build && ocular-publish prod",
"pre-commit": "yarn lint",
"pre-push": "ocular-lint pre-commit && ocular-test node"
},
"devDependencies": {
"@luma.gl/constants": "^9.0.0-beta",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"ts-morph": "^21.0.0"
},
"pre-commit": "pre-commit",
"pre-push": "pre-push",
"dependencies": {},
"volta": {
"node": "18.19.0",
"yarn": "1.22.19"
}
}