forked from zooniverse/front-end-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.39 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"private": true,
"name": "@zooniverse/front-end-monorepo",
"description": "A monorepo for holding all of the Zooniverse's front-end code.",
"license": "Apache-2.0",
"author": "Zooniverse <[email protected]> (https://www.zooniverse.org/)",
"homepage": "https://github.com/zooniverse/front-end-monorepo",
"repository": "[email protected]:zooniverse/front-end-monorepo.git",
"bugs": "https://github.com/zooniverse/front-end-monorepo/issues",
"version": "0.0.1",
"devDependencies": {
"@storybook/storybook-deployer": "~2.8.10",
"coveralls": "~3.1.0",
"lerna": "~3.15.0",
"nyc": "~15.1.0",
"plop": "~2.5.3",
"snazzy": "~9.0.0"
},
"scripts": {
"bootstrap": "./bin/bootstrap.sh",
"build": "lerna run --parallel build",
"coverage-lcov": "nyc report --reporter=lcov",
"deploy-storybook": "storybook-to-ghpages --packages packages",
"panic": "./bin/panic-button.sh",
"panic-button": "./bin/panic-button.sh",
"storybook": "lerna run --parallel storybook",
"test": "lerna run --parallel test",
"test:ci": "nyc lerna run --parallel test:ci"
},
"engines": {
"node": ">=14"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"**/*.spec.jsx",
"**/dist/*",
"**/test/*",
"bin",
"docs",
"node_modules",
"plop"
],
"extension": [
".jsx"
]
},
"workspaces": [
"packages/**"
]
}