-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.87 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
{
"name": "@formanta/dev",
"version": "0.0.1",
"description": "",
"private": true,
"scripts": {
"clean": "lerna clean -y",
"clean-dist": "rm -rf dist && lerna run clean",
"prebuild": "npm run clean-dist && npm run check",
"build": "lerna run --stream build && npm run build-packages",
"postbuild": "npm run copy-docs && npm run copy-assets-prebuild",
"build-docs": "cd packages/formantasass && npm run build && cd ../../",
"copy-assets-prebuild": "mkdirp ./packages/demo/dist/styles && cp -a ./packages/demo/dist/assets/* ./packages/demo/dist/styles",
"copy-docs": "cp -a ./packages/formantasass/build/ ./packages/demo/dist/docs",
"release": "lerna publish from-package --no-git-reset",
"check": "npm run lint && npm run tscheck",
"lint": "cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" eslint --max-warnings=0 'packages'",
"tscheck": "tsc --noEmit",
"build-packages": "tsc -p tsconfig.packages.json",
"postbuild-packages": "cp ./packages/formantablocks/package.json ./dist/formantablocks/package.json && cp ./packages/formantablocks/README.md ./dist/formantablocks/README.md",
"demo": "npm -w @formanta/demo run serve",
"demo:build": "npm -w @formanta/demo run build",
"demo-blocks": "npm -w @formanta/demo-blocks run serve",
"demo-blocks:build": "npm -w @formanta/demo-blocks run build"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"eslint": "^9.14.0",
"lerna": "^8.1.8",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.12.2"
},
"workspaces": [
"packages/*"
]
}