-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "verna",
"version": "1.0.0-beta.0",
"description": "An extensible form builder based on React JSON Schema Form.",
"main": "./lib/dist/index.js",
"repository": "https://github.com/openfun/verna",
"author": {
"name": "Open FUN (France Université Numérique)",
"email": "fun.dev@fun-mooc.fr"
},
"bugs": {
"url": "https://github.com/openfun/verna/issues"
},
"browserslist": [
"last 2 versions",
">1%",
"not dead"
],
"license": "MIT",
"private": true,
"scripts": {
"build": "turbo run build --filter=@openfun/verna",
"build:examples": "turbo run build --filter='./examples/*'",
"dev": "turbo run dev --parallel --filter=@openfun/verna --filter=${VERNA_EXAMPLE:-verna-examples-playground}",
"lint": "FORCE_COLOR=1 turbo run lint",
"i18n:extract": "turbo run i18n:extract",
"i18n:compile": "turbo run i18n:compile",
"test": "FORCE_COLOR=1 turbo run test --"
},
"workspaces": [
"lib",
"examples/**"
],
"volta": {
"node": "16.17.1",
"yarn": "1.22.19"
},
"devDependencies": {
"turbo": "1.6.3"
}
}