-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
36 lines (36 loc) · 1.04 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
{
"name": "ocular-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"modules/dev-tools"
],
"scripts": {
"bootstrap": "yarn install-fast && ocular-bootstrap",
"install-fast": "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true yarn",
"build": "ocular-clean && tspc -b modules/dev-tools/tsconfig.json && ocular-build",
"clean": "ocular-clean",
"cover": "ocular-test cover",
"lint": "ocular-lint",
"test": "ocular-test node",
"publish-devtools-beta": "(cd modules/dev-tools; npm run publish-beta)",
"publish-devtools-prod": "(cd modules/dev-tools; npm run publish-prod)",
"pre-commit": "yarn lint",
"pre-push": "ocular-test fast"
},
"devDependencies": {
"@babel/plugin-syntax-import-assertions": "^7.20.0",
"@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"
}
}