-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 3.3 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "optimise",
"version": "3.2.6",
"private": true,
"description": "Optimise:MS",
"keywords": [
"ms"
],
"homepage": "https://github.com/dsi-icl/optimise",
"repository": "github:dsi-icl/optimise",
"license": "MIT",
"author": {
"name": "Florian Guitton",
"email": "f.guitton@imperial.ac.uk"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/electron-builder",
"**/electron-builder/**",
"**/electron-webpack",
"**/electron-webpack/**"
]
},
"scripts": {
"build": "nx run-many --target=build --parallel=1 --projects=optimise-core,optimise-ui",
"preelectron": "nx run-many --target=build --parallel=1 --projects=optimise-core,optimise-electron",
"electron": "nx run-many --target=package --projects=optimise-electron",
"postinstall": "patch-package",
"lint": "nx affected --target=lint",
"lint-commit": "commitlint -c false --edit",
"lint-fix": "nx affected --target=lint --fix",
"lint-staged": "lint-staged",
"prepackage": "yarn build",
"package": "nx run-many --target=package --parallel=1 --projects=optimise-docker,optimise-electron",
"prepare": "is-ci || husky",
"publish": "nx run-many --target=publish --parallel=1 --projects=optimise-docker,optimise-electron",
"start": "nx run-many --target=start --parallel=3 --projects=optimise-core,optimise-sync,optimise-ui",
"test": "nx run-many --target=test"
},
"resolutions": {
"@babel/core": "^7.26.0",
"@babel/generator": "^7.26.0",
"@babel/parser": "^7.26.3",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"cookie": "^1",
"fbjs": "^3",
"is-ci": "^4",
"knex": "^3.1.0",
"path-to-regexp": "^1.9.0"
},
"dependencies": {
"axios": "^1.7.9",
"pretty-bytes": "6.1.1"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-react": "^7.26.3",
"@commitlint/config-conventional": "19.7.1",
"@nx/eslint-plugin": "20.4.6",
"@nx/workspace": "20.4.6",
"@tailwindcss/postcss": "4.0.9",
"@tailwindcss/vite": "4.0.9",
"@vitejs/plugin-react-swc": "^3.8.0",
"@vitest/coverage-v8": "^3.0.7",
"autoprefixer": "10.4.20",
"babel-jest": "29.7.0",
"babel-loader": "9.2.1",
"babel-plugin-require-context-hook": "1.0.0",
"commitlint": "19.7.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsonc": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "9.1.7",
"is-ci": "4.1.0",
"jest": "29.7.0",
"jsdom": "^26.0.0",
"lint-staged": "15.4.3",
"nx": "20.4.6",
"patch-package": "8.0.0",
"tailwindcss": "4.0.9",
"typescript": "5.7.3",
"vite": "^6.2.0",
"vite-plugin-babel": "1.3.0",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
},
"engines": {
"yarn": "^1.10.0"
}
}