-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.53 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "besser_wme_standalone",
"version": "1.0.0",
"private": true,
"repository": "git@github.com:BESSER/BESSER_WME_standalone.git",
"license": "MIT",
"author": {
"name": "Armen",
"email": "armen.sulejmani@list.lu",
"url": "http://armen.sulejmani.com"
},
"engines": {
"node": ">=20.0.0"
},
"workspaces": [
"packages/server",
"packages/webapp",
"packages/editor"
],
"scripts": {
"dev": "npm run start --workspace=webapp",
"dev:editor": "npm run dev --workspace=@besser/wme",
"start": "concurrently \"npm run start:webapp\" \"npm run start:server\"",
"start:webapp": "npm run start --workspace=webapp",
"start:server": "npm run start --workspace=server",
"build": "concurrently \"npm run build:webapp\" \"npm run build:server\"",
"build:local": "concurrently \"npm run build:webapp:local\" \"npm run build:server\"",
"build:webapp": "npm run build --workspace=webapp",
"build:webapp:local": "npm run build:local --workspace=webapp",
"build:server": "npm run build --workspace=server",
"lint": "concurrently \"npm run lint:webapp\" \"npm run lint:server\"",
"lint:webapp": "npm run lint --workspace=webapp",
"lint:server": "npm run lint --workspace=server",
"prettier:check": "prettier --check 'packages/**/{main,tests}/**/*.{json,ts,tsx,js,jsx,css,scss,html}'",
"prettier:write": "prettier --write 'packages/**/{main,tests}/**/*.{json,ts,tsx,js,jsx,css,scss,html}'",
"i18n:check": "node scripts/i18n-check.mjs",
"i18n:validate": "node scripts/i18n-validate-strict.mjs",
"update": "ncu -i --deep --format group"
},
"overrides": {
"semver": "7.6.3",
"postcss": "8.4.49",
"crypto-js": "4.2.0",
"minimatch": ">=3.1.4",
"brace-expansion": ">=1.1.13",
"underscore": ">=1.13.7"
},
"dependencies": {
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"recharts": "^3.2.1",
"vanilla-colorful": "^0.7.2"
},
"devDependencies": {
"@types/file-saver": "^2.0.7",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"ajv": "^8.17.1",
"ajv-keywords": "^5.1.0",
"concurrently": "9.1.0",
"css-loader": "^7.1.2",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.34.0",
"prettier": "3.3.3",
"style-loader": "^4.0.0",
"stylelint": "16.3.1",
"stylelint-config-recommended": "14.0.1",
"ts-loader": "9.5.1",
"typescript": "5.6.3",
"webpack": "^5.105.4",
"webpack-cli": "5.1.4",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "6.0.1"
}
}