-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 841 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "photomap-frontend",
"version": "1.0.0",
"description": "PhotoMapAI Frontend JavaScript Tests",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"lint": "eslint photomap/frontend/static/javascript/**/*.js tests/frontend/**/*.js",
"lint:fix": "eslint --fix photomap/frontend/static/javascript/**/*.js tests/frontend/**/*.js",
"format": "prettier --write 'photomap/frontend/static/javascript/**/*.js' 'tests/frontend/**/*.js'",
"format:check": "prettier --check 'photomap/frontend/static/javascript/**/*.js' 'tests/frontend/**/*.js'"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.0",
"eslint": "^9.17.0",
"prettier": "^3.4.2"
}
}