-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (37 loc) · 1.19 KB
/
package.json
File metadata and controls
39 lines (37 loc) · 1.19 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
39
{
"type": "module",
"private": true,
"workspaces": [
"src/*/assets"
],
"scripts": {
"test": "npm exec -ws -- jest",
"lint:fix": "npm exec -ws -- eslint src test --fix",
"lint": "npm exec -ws -- eslint src test --no-fix",
"format:fix": "npm exec -ws -- prettier \"src/**/*.js\" \"test/**/*.js\" \"**/*.{json,md}\" --write",
"format": "npm exec -ws -- prettier \"src/**/*.js\" \"test/**/*.js\" \"**/*.{json,md}\" --no-write --check"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.15.8",
"@symfony/stimulus-testing": "^2.0.1",
"babel-jest": "^29.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.6.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.0",
"prettier": "^3.0.0",
"@eslint/js": "^9.14.0",
"globals": "^15.11.0",
"@eslint/eslintrc": "^3.1.0"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 4,
"bracketSameLine": true,
"singleQuote": true
}
}