-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "@storyblok/react-workspace",
"version": "0.0.1",
"private": false,
"license": "MIT",
"workspaces": [
"./lib",
"./playground",
"./playground-next",
"./playground-next13-rsc",
"./playground-next13-live-editing"
],
"scripts": {
"dev": "npm run dev --workspace=lib & npm run demo",
"demo": "npm run demo --workspace=playground",
"demo-next": "npm run build && npm run demo --workspace=playground-next",
"demo-next13-rsc": "npm run demo --workspace=playground-next13-rsc",
"demo-next13-live-editing": "npm run demo --workspace=playground-next13-live-editing",
"build": "npm run build --workspace=lib",
"test": "npm run test --workspace=lib",
"test:unit": "npm run test:unit --workspace=lib",
"test:e2e": "npm run test:e2e --workspace=lib",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@storyblok/eslint-config": "^0.3.0",
"@tsconfig/recommended": "^1.0.7",
"eslint": "^9.9.1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}