-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 2.96 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
{
"name": "moodlenet-dev",
"version": "0.0.1",
"license": "AGPL-3.0",
"description": "MoodleNet monorepo system",
"author": "https://github.com/aleclofabbro",
"type": "module",
"engines": {
"node": "20",
"npm": "10",
"yarn": "please-use-npm"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"axios": "1.6.2",
"copyfiles": "^2.4.1",
"eslint": "^8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.0",
"husky-init": "^8.0.0",
"jose": "4.14",
"lerna": "^6.6.2",
"lerna-dependency-graph": "^1.1.0",
"lint-staged": "^13.0.3",
"node-dev": "^7.4.3",
"npm-watch": "^0.11.0",
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "^3.2.2",
"react-scripts": "5.0.1",
"rimraf": "4.3.1",
"run-script-os": "^1.1.6",
"typescript": "5.4",
"vscode-generate-index-standalone": "^1.6.0"
},
"scripts": {
"postinstall": "npm run prj-cleanup-build && npm run prj-husky-init && npm run prj-bs",
"prepare": "npm run prj-cleanup-build && npm run prj-build",
"prj-husky-init": "rimraf .husky && husky install && husky add .husky/pre-commit \"npm run pre-commit\"",
"prj-bs": "lerna bootstrap --hoist",
"dev-assistant": "lerna run --parallel --stream dev-assistant --",
"prj-build": "tsc --build packages/arangodb packages/component-library packages/system-entities packages/core packages/crypto packages/email-service packages/extensions-manager packages/http-server packages/key-value-store packages/organization packages/react-app packages/simple-email-auth packages/ed-resource packages/collection packages/ed-meta packages/simple-file-store packages/openid packages/web-user packages/unsplash packages/moodle-lms-integration packages/mn-central-jira-simple-moderations packages/core-domain packages/openai-autofill packages/web-user-auto-publisher",
"prj-build-watch": "npm run prj-build -- --watch",
"prj-build-clean": "npm run prj-build -- --clean",
"dev-install-backend": "node bin/install.mjs",
"dev-start-backend": "node bin/boot.mjs",
"dev-start-webapp": "node bin/dev-webapp.mjs",
"prj-cleanup-all": "npm run pkg-cleanup-all && rimraf .husky && rimraf tsconfig.tsbuildinfo && rimraf node_modules",
"pkg-cleanup-all": "npm run prj-cleanup-build && lerna run --parallel cleanup-all && rimraf --glob packages/*/node_modules",
"prj-cleanup-build": "lerna run --parallel cleanup-build && rimraf --glob packages/*/dist && rimraf --glob packages/*/tsconfig.tsbuildinfo",
"dep-graph": "lerna-dependency-graph -f jpg -o dependency-graph.jpg && lerna-dependency-graph -o dependency-graph.dot",
"pre-commit": "lint-staged"
}
}