-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.47 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
{
"name": "zotero-web-common",
"license": "AGPL-3.0",
"version": "0.13.4",
"private": true,
"description": "",
"repository": "",
"main": "",
"type": "module",
"sourceType": "module",
"scripts": {
"test:watch": "jest --watch",
"test": "jest --silent",
"eslint": "eslint --ext .js,.jsx .",
"stylelint": "stylelint \"scss/**/*.scss\"",
"lint": "run-p stylelint eslint"
},
"dependencies": {
"@floating-ui/react-dom": "^2.1.2",
"classnames": "^2.5.1",
"deep-equal": "^2.2.3",
"prop-types": "^15.8.1",
"react": "<19.0.0",
"react-dom": "<19.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"babel-jest": "^29.7.0",
"eslint": "<9.0.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all2": "^7.0.2",
"stylelint": "^16.14.1",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-scss": "^6.11.0"
}
}