-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.6 KB
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
55
56
57
{
"name": "@expry/monorepo",
"private": true,
"version": "0.0.0",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"description": "A library to transform JSON expressions to JavaScript code.",
"repository": {
"type": "git",
"url": "https://github.com/martiserra99/expry"
},
"homepage": "https://expry.dev/",
"scripts": {
"preinstall": "only-allow npm",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"start:system": "npm run start --workspace=system-app",
"start:basic": "npm run start --workspace=basic-app",
"start:formity": "npm run start --workspace=formity-app",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"clean": "npm -r --parallel exec rimraf dist .turbo node_modules"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@eslint/js": "^9.13.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@swc/core": "^1.10.3",
"eslint": "^9.13.0",
"eslint-plugin-react": "^7.37.1",
"globals": "^15.11.0",
"only-allow": "^1.2.1",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"tslib": "^2.8.0",
"turbo": "^2.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vitest": "^2.1.8"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.29.1"
},
"packageManager": "npm@10.8.2",
"dependencies": {
"@formity/system": "^3.0.0"
}
}