-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 KB
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
{
"name": "wq.app",
"type": "module",
"scripts": {
"test": "npm test --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"jest": "jest --verbose",
"babel": "babel --ignore **/__tests__/**",
"prettier": "prettier",
"prettier-all": "prettier --write .",
"eslint": "eslint",
"lint": "eslint ."
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@eslint/js": "^9.39.2",
"@testing-library/react": "^16.3.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.7.3"
},
"prettier": {
"tabWidth": 4
},
"workspaces": [
"packages/react",
"packages/material-web",
"packages/material",
"packages/gatsby-components",
"docs"
]
}