-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "glissando",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"deps": "npm run deps --workspaces --if-present && npm install",
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"prepare:patch": "npm version patch && npm version patch --workspaces",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts,.tsx --fix ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "8.10.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"npm-check-updates": "^16.7.9",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"prettier": "^3.0.0",
"rollup-plugin-filesize": "^10.0.0",
"typescript": "^5.0.0"
},
"resolutions": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"version": "0.8.7"
}