-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 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
39
40
41
42
{
"name": "typescale-garden",
"version": "1.0.0",
"description": "a monorepo for all of typescale-garden pieces, a project meant to aid designers working on creating typescales as part of a design system",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --plugin-search-dir . --write .",
"server": "cd server && npm run dev",
"client": "cd client && npm run dev",
"build:services": "tsc services/src/**/*.ts",
"create:fonts-file": "npm run build:services && node --env-file=.env.local services/src/functions/updateFontsFromApi.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ignacio-nacho-barbano/typescale-garden.git"
},
"workspaces": [
"./client",
"./plugin",
"./server",
"./services",
"./docker"
],
"keywords": [
"svelte",
"svelteKit",
"node",
"plugin",
"figma",
"design",
"typography",
"typographic",
"scale"
],
"author": "@ignacio-nacho-barbano (Ignacio Rafael Barbano Panisello)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ignacio-nacho-barbano/typescale-garden/issues"
},
"homepage": "https://typescalegarden.uy"
}