-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
116 lines (116 loc) · 3.22 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@ecrituresnumerique/stylo-front",
"private": true,
"description": "Stylo front-end, online text editor for scholars",
"version": "3.2.5",
"license": "MIT",
"type": "module",
"#browserlist#": "https://browserslist.dev/?q=ZGVmYXVsdHMsIGxhc3QgMiB2ZXJzaW9ucywgbm90IGRlYWQsID4gMC4yJQ%3D%3D",
"browserslist": [
"defaults",
"last 2 versions",
"not dead",
"> 0.2%"
],
"engines": {
"node": ">=18",
"npm": ">=10"
},
"scripts": {
"lint": "prettier --check src",
"lint:fix": "prettier --write src",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"develop": "npm run start",
"test": "vitest --coverage",
"posttest": "eslint ./src"
},
"dependencies": {
"@babel/plugin-proposal-async-generator-functions": "^7.20.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.25.7",
"@geist-ui/core": "^2.3.8",
"@monaco-editor/react": "~4.6",
"@rjsf/core": "~5.22",
"@rjsf/validator-ajv8": "~5.22",
"@rollup/plugin-graphql": "^2.0.2",
"@sentry/react": "^8.38.0",
"@sentry/vite-plugin": "^3.0.0",
"@vitejs/plugin-legacy": "^6.0.0",
"@vitejs/plugin-react": "^4.3.4",
"allof-merge": "^0.6.6",
"biblatex-csl-converter": "^1.11.0",
"clsx": "^1.2.1",
"core-js": "^3.38",
"diff-match-patch": "^1.0.5",
"downshift": "^6.1.12",
"http-link-header": "^1.0.2",
"i18next": "^22.4.15",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-resources-to-backend": "^1.1.3",
"js-yaml": "^4.1.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"monaco-editor": "^0.52.0",
"object-path-immutable": "^4.1.0",
"pagedjs": "^0.4.0",
"prop-types": "^15.8.1",
"react": "~18.3",
"react-copy-to-clipboard": "^5.0.3",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-dom": "~18.3",
"react-feather": "^2.0.9",
"react-i18next": "^12.2.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux": "^4.1.0",
"sass": "^1.56.2",
"slugify": "1.6.6",
"swr": "^2.0.0",
"terser": "^5.16.1",
"vite": "^6.0.11",
"vite-plugin-handlebars": "~2.0",
"y-monaco": "^0.1.4",
"y-websocket": "^1.5.0",
"yjs": "^13.6.6"
},
"optionalDependencies": {
"@esbuild/linux-x64": "^0.24.2",
"@rollup/rollup-linux-x64-gnu": "^4.31.0"
},
"overrides": {
"@geist-ui/core": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ecrituresnumeriques/stylo"
},
"bugs": {
"url": "https://github.com/ecrituresnumeriques/stylo/issues"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@vitest/coverage-v8": "^3.0.3",
"@welldone-software/why-did-you-render": "~8.0",
"eslint": "^8.2.0",
"eslint-plugin-jsdoc": "^50.6.2",
"eslint-plugin-jsonc": "^2.5.0",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-vitest": "^0.5.4",
"jsdom": "^26.0.0",
"lodash.merge": "^4.6.2",
"prettier": "^2.3.0",
"vitest": "^3.0.3"
},
"volta": {
"node": "18.20.4",
"npm": "10.9.0"
}
}