-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 3.04 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@babylonjs/smart-filters-root",
"version": "0.0.0",
"description": "Babylon.js Smart Filter monorepo",
"author": {
"name": "Sebastien VANDENBERGHE"
},
"keywords": [
"video",
"composition",
"3D",
"2D",
"javascript",
"html5",
"webgl",
"webgl2",
"webgpu",
"babylon"
],
"private": true,
"license": "MIT",
"readme": "README.md",
"scripts": {
"postinstall": "npm run build",
"clean": "npm run clean --workspaces",
"assets": "npm run assets -w @babylonjs/smart-filters-editor",
"build": "npm run clean && npm run assets && npm run build:buildTools && npm run build:shaders && tsc -b -v && npm run build -w @babylonjs/smart-filters-demo",
"build:buildTools": "npm run build -w @babylonjs/smart-filters",
"build:shaders": "npm run build:runTools -w @babylonjs/smart-filters && npm run build:runTools -w @babylonjs/smart-filters-demo",
"watch": "tsc -b -v -w",
"start": "npm run assets && concurrently \"npm run watch\" \"npm run start -w @babylonjs/smart-filters-demo\"",
"test": "jest",
"format": "npm run format:check && npm run format:fix",
"format:check": "prettier --check \"./packages/**/src/**/*.{ts,tsx,js,json,scss,css}\"",
"format:fix": "prettier --write \"./packages/**/src/**/*.{ts,tsx,js,json,scss,css}\"",
"lint": "npm run lint:check && npm run lint:fix",
"lint:check": "eslint \"./packages/**/src/**/*.{ts,tsx,js,json}\"",
"lint:fix": "eslint \"./packages/**/src/**/*.{ts,tsx,js,json}\" --fix",
"preparePublish": "npm run preparePublish -w @babylonjs/smart-filters && npm run preparePublish -w @babylonjs/smart-filters-demo && npm run preparePublish -w @babylonjs/smart-filters-editor"
},
"workspaces": [
"packages/core",
"packages/editor",
"packages/demo"
],
"devDependencies": {
"@alex_neo/jest-expect-message": "~1.0.5",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babylonjs/core": "^7.35.2",
"@babylonjs/shared-ui-components": "^7.35.2",
"@types/jest": "~29.5.8",
"@types/jest-expect-message": "~1.1.0",
"@types/node": "^22.0.2",
"@typescript-eslint/eslint-plugin": "~6.11.0",
"@typescript-eslint/parser": "~6.11.0",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "~9.0.0",
"eslint-plugin-import": "~2.29.0",
"eslint-plugin-jest": "~27.6.0",
"eslint-plugin-jsdoc": "~46.9.0",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-tsdoc": "~0.2.17",
"html-webpack-plugin": "^5.6.3",
"jest": "~29.7.0",
"jest-junit": "~16.0.0",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"ts-jest": "~29.1.1",
"ts-node": "~10.9.1",
"ts-patch": "~3.0.2",
"typescript": "^5.1.0"
}
}