-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 898 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 898 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
{
"name": "canva-connect-api-starter-kit",
"description": "A starter kit repo for Canva's Connect API",
"author": "Canva Pty Ltd.",
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"workspaces": [
"demos/common",
"demos/ecommerce_shop",
"demos/ecommerce_shop/frontend",
"demos/ecommerce_shop/backend",
"demos/playground",
"demos/playground/frontend",
"demos/playground/backend",
"demos/realty",
"demos/realty/frontend",
"demos/realty/backend",
"demos/realty/shared-models",
"client"
],
"engines": {
"node": ">=22.0.0"
},
"engineStrict": true,
"scripts": {
"generate": "cd client && npm run generate",
"demo:ecommerce": "cd demos/ecommerce_shop && npm start",
"demo:playground": "cd demos/playground && npm start",
"demo:realty": "cd demos/realty && npm start",
"lint:types": "tsc --noEmit"
}
}