-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 KB
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
{
"name": "@atomico/monorepo",
"version": "0.0.0",
"meta": {
"title": "Monorepo - Atomico + Vite(JS,JSX,TS,TSX)",
"description": "Hassle-free starter template, perfect for getting started with Monorepo + Atomico + Vite",
"branch": "https://github.com/atomicojs/atomico/tree/3-monorepo/"
},
"private": true,
"type": "module",
"workspaces": [
"app",
"packages/*"
],
"scripts": {
"build": "npm run build --workspaces",
"create": "scaff templates/component packages",
"perf": "tach --config tachometer.json --json-file results-1000.json"
},
"devDependencies": {
"@atomico/exports": "^0.36.0",
"@atomico/scaffold": "latest",
"typescript": "latest"
},
"prettier": {
"tabWidth": 4,
"singleQuote": false
},
"dependencies": {
"atomico": "latest",
"lit": "latest",
"preact": "latest",
"preact-custom-element": "latest",
"react": "^18",
"react-dom": "^18",
"react-to-webcomponent": "^1",
"tachometer": "^0.7.1"
}
}