-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 777 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 777 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": "solid-elements",
"version": "0.0.1",
"description": "SolidJS components",
"author": "Anton Sukhovatkin",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"start": " yarn --cwd apps/docs/ start",
"build": "turbo run build",
"clean": "turbo run clean && rm -rf node_modules",
"postinstall": "preconstruct dev"
},
"preconstruct": {
"packages": ["packages/*"]
},
"devDependencies": {
"solid-js": "^1.6.15",
"turbo": "1.2.4",
"primeicons": "^6.0.1",
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"babel-preset-solid": "^1.6.13",
"typescript": "^5.0.2",
"@preconstruct/cli": "^2.3.0"
}
}