forked from Kattoor/aeternum-map
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 905 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 905 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
30
31
32
33
34
{
"name": "aeternum-map",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"prepare": "husky install",
"test": "prettier --check . && eslint . && stylelint \"**/*.css\" && cd apps/api && npm run lint && cd ../www && npm run lint",
"start": "cd apps/api && npm start"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "2.8.1",
"stylelint": "14.16.1",
"stylelint-config-prettier": "9.0.4",
"stylelint-config-standard": "29.0.0",
"turbo": "1.6.3",
"typescript": "4.9.4"
},
"engines": {
"npm": ">= 8.0.0",
"node": ">= 16.0.0"
}
}