-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.22 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
40
{
"name": "ministor",
"private": true,
"version": "0.7.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:all": "concurrently --kill-others \"npm run dev:storefront\" \"npm run dev:admin\"",
"dev:admin": "npm run dev -w @ministor/admin",
"dev:storefront": "npm run dev -w @ministor/storefront",
"build:api": "npm run build -w @ministor/api",
"build:admin": "npm run build -w @ministor/admin",
"build:storefront": "npm run build -w @ministor/storefront",
"build:all": "npm run build:api && npm run build:storefront && npm run build:admin",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"lint:styles": "stylelint \"**/*.css\"",
"lint:styles:fix": "stylelint \"**/*.css\" --fix"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"concurrently": "^10.0.1",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"jiti": "^2.7.0",
"prettier": "^3.8.3",
"stylelint": "^17.12.0",
"stylelint-config-standard": "^40.0.0",
"typescript-eslint": "^8.60.0"
},
"dependencies": {
"mobx": "^6.16.1",
"wouter": "^3.10.0"
}
}