-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 859 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 859 Bytes
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
{
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"name": "atlas",
"scripts": {
"dev": "npm run dev --workspaces --if-present",
"start": "npm run start --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"preview": "npm run preview --workspaces --if-present",
"astro": "npm run astro --workspaces --if-present",
"check_for_errors": "npm run check_for_errors --workspaces --if-present",
"pre-commit": "npm run lint-staged && npm run check_for_errors",
"lint-staged": "eslint ./src/**/*.tsx",
"prepare": "husky"
},
"type": "module",
"workspaces": [
"src/atlas_frontend"
],
"devDependencies": {
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"typescript-eslint": "^8.29.0"
}
}