forked from zooniverse/front-end-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.56 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
52
53
54
{
"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": "~8.1.2",
"nyc": "~17.1.0",
"snazzy": "~9.0.0"
},
"scripts": {
"bootstrap": "./bin/bootstrap.sh",
"bootstrap:es6": "./bin/bootstrap:es6.sh",
"build": "lerna run --parallel build",
"clean-install": "./bin/clean-install.sh",
"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 --silent lerna run --parallel test:ci"
},
"engines": {
"node": ">=20.5"
},
"nyc": {
"exclude": [
"**/*.spec.js",
"**/*.spec.jsx",
"**/dist/*",
"**/test/*",
"bin",
"docs",
"node_modules"
],
"extension": [
".jsx"
]
},
"workspaces": {
"packages": [
"packages/**"
]
},
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}