Zalvena/package.json

28 lines
517 B
JSON
Raw Normal View History

2023-04-02 12:43:28 +01:00
{
2023-08-31 15:36:22 +01:00
"name": "root",
2023-08-31 15:34:11 +01:00
"version": "0.0.0",
2023-08-21 23:43:50 +02:00
"private": true,
"workspaces": [
2023-08-31 16:16:38 +01:00
"examples/*",
2023-08-31 15:34:11 +01:00
"packages/*"
2023-08-21 23:43:50 +02:00
],
"scripts": {
"build": "turbo run build",
2023-09-01 10:52:15 +01:00
"build-packages": "turbo run build --filter=./packages/*",
2023-08-21 23:43:50 +02:00
"format": "prettier --write \"**/*.{ts,tsx,md}\""
2023-05-11 12:49:45 +01:00
},
2023-08-21 23:43:50 +02:00
"devDependencies": {
2023-08-31 16:16:38 +01:00
"prettier": "3.0.3",
"turbo": "1.10.13"
2023-04-02 12:43:28 +01:00
},
2023-08-21 23:43:50 +02:00
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
2023-04-02 12:43:28 +01:00
},
2023-08-21 23:43:50 +02:00
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 120
2023-08-31 16:16:38 +01:00
}
2023-04-02 12:43:28 +01:00
}