-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
123 lines (123 loc) · 3.66 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "solid-bedrock-layout",
"version": "0.11.8",
"description": "Solid Foundational Layout Primitives for your Solid-js App",
"info": "Solid Bedrock Layout is a Solid.js port of the Bedrock Layout primitives written for react. Bedrock primitives are built to allow you to compose them together to create your own custom layouts. Many 'complex' layouts can be created by composing Bedrock Layout Primitives",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Bedrock-Layouts/Solid-Bedrock.git"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"author": "Jarvis1010 <[email protected]>",
"contributors": [
{
"name": "Travis Waith-Mair",
"email": "[email protected]",
"url": "https://github.com/Jarvis1010"
}
],
"keywords": [
"solidhack",
"best_ecosystem"
],
"homepage": "https://solid.bedrock-layout.dev",
"scripts": {
"start": "vite",
"dev": "vite",
"build:site": "vite build",
"serve": "vite preview",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch --notify",
"lint": "lerna run lint --parallel",
"lint-staged": "lint-staged",
"check-types": "lerna run check-types --parallel",
"check-format": "lerna run check-format --parallel",
"fix-format": "lerna run fix-format --parallel",
"bootstrap": "lerna bootstrap",
"cz": "cz",
"clean": "lerna clean",
"build": "lerna run build",
"prepublish": "yarn build",
"publish": "lerna publish",
"publish:ci": "yarn publish -- --no-commit-hooks --ignore-scripts",
"publish:fix": "lerna publish from-package",
"verify": "npm-run-all check-types lint check-format",
"postinstall": "husky install"
},
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@bedrock-layout/css": "^2.2.4",
"@bedrock-layout/register-resize-callback": "^2.0.0",
"@types/dedent": "^0.7.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-jest": "^29.3.1",
"babel-preset-solid": "^1.3.6",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"husky": "^7.0.2",
"import-sort-style-module": "^6.0.0",
"jest": "^27.0.5",
"lerna": "^5.4.3",
"lerna-changelog": "^2.1.0",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"open-props": "^1.3.8",
"prettier": "^2.3.1",
"prettier-plugin-import-sort": "0.0.7",
"rimraf": "^3.0.2",
"solid-jest": "^0.2.0",
"solid-js": "^1.5.1",
"solid-styled-components": "^0.27.4",
"typescript": "^4.2.0",
"typescript-eslint": "^0.0.1-alpha.0",
"vite": "^3.2.4",
"vite-plugin-solid": "^2.2.5"
},
"prettier": {
"semi": true,
"singleQuote": false,
"arrowParens": "always"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"lint-staged": {
"*.+(js|ts|tsx)": [
"eslint"
],
"**/*.+(js|json|ts|tsx)": [
"prettier --write"
],
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"dedent": "^0.7.0",
"highlight.js": "^11.5.0",
"nx": "^14.5.10",
"pretty-format": "^29.3.1",
"solid-app-router": "^0.3.0"
}
}