forked from uber-web/ocular
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.17 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
{
"name": "ocular-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"modules/dev-tools",
"website"
],
"scripts": {
"bootstrap": "yarn install-fast && ocular-bootstrap",
"install-fast": "PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true yarn",
"build": "ocular-clean && ocular-build",
"clean": "ocular-clean",
"cover": "ocular-test cover",
"lint": "ocular-lint",
"test": "ocular-test node",
"test-gatsby": "(cd modules/gatsby-theme-ocular; yarn test;)",
"publish-devtools-beta": "(cd modules/dev-tools; npm run publish-beta)",
"publish-devtools-prod": "(cd modules/dev-tools; npm run publish-prod)",
"publish-gatsby-beta": "(cd modules2/gatsby-theme-ocular; npm run publish-beta)",
"publish-gatsby-prod": "(cd modules2/gatsby-theme-ocular; npm run publish-prod)",
"pre-commit": "yarn lint",
"pre-push": "ocular-test fast"
},
"devDependencies": {
"ocular-dev-tools": "1.0.0-alpha.7",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.1",
"reify": "^0.20.12"
},
"resolutions": {
"istanbul-lib-instrument": "4.0.3"
},
"pre-commit": "pre-commit",
"pre-push": "pre-push",
"dependencies": {}
}