-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.57 KB
/
package.json
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
41
42
43
{
"name": "@studiometa/playground-root",
"version": "0.1.5",
"description": "A packaged web development playground",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspace=@studiometa/playground",
"watch": "npm run watch --workspace=@studiometa/playground",
"dev": "concurrently --raw 'npm run watch' 'npm run demo:dev' --names 'playground,demo'",
"demo:dev": "npm run dev --workspace=@studiometa/playground-demo",
"predemo:build": "npm run build",
"demo:build": "npm run build --workspace=@studiometa/playground-demo",
"demo:preview": "npm run preview --workspace=@studiometa/playground-demo",
"lint": "npm run lint:scripts && npm run lint:styles && npm run lint:templates",
"lint:scripts": "eslint . --cache",
"lint:styles": "stylelint packages/*/src/**/*.css --cache",
"lint:templates": "prettier -c --cache .",
"fix": "npm run fix:scripts && npm run fix:styles && npm run fix:templates",
"fix:scripts": "npm run lint:scripts -- --fix",
"fix:styles": "npm run lint:styles -- --fix",
"fix:templates": "npm run lint:templates -- --write"
},
"dependencies": {
"@studiometa/eslint-config": "^4.1.0",
"@studiometa/prettier-config": "^4.1.0",
"@studiometa/stylelint-config": "^4.0.0",
"concurrently": "9.1.0",
"eslint": "^9.15.0",
"prettier": "^3.3.3",
"stylelint": "^16.10.0"
},
"engines": {
"node": ">=20.11.0"
},
"stylelint": {
"extends": "@studiometa/stylelint-config"
},
"prettier": "@studiometa/prettier-config"
}