-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.53 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
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
{
"name": "@launch/solid",
"author": "Launch AI Team",
"description": "A high performance UI library for Solid JS - based on the Launch Design principles.",
"version": "0.1.4",
"private": false,
"module": "dist/index.js",
"types": "dist/types.d.ts",
"files": [
"dist/**"
],
"keywords": [
"solid",
"ui",
"components",
"library"
],
"homepage": "https://github.com/Launch-AI/launch-solid-ui#readme",
"bugs": "https://github.com/Launch-AI/launch-solid-ui/issues",
"repository": {
"type": "git",
"url": "git@github.com:Launch-AI/launch-solid-ui.git"
},
"license": "MIT",
"contributors": [
"Ari Seyhun <ariseyhun@live.com.au> (https://ariseyhun.com)"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"format": "yarn prettier --write .",
"prepare": "husky install",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-angular": "^12.1.4",
"@rollup/plugin-image": "^2.0.6",
"@storybook/addon-actions": "^6.3.0",
"@storybook/addon-essentials": "^6.3.0",
"@storybook/addon-links": "^6.3.0",
"@storybook/html": "^6.3.0",
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/node": "15.12",
"babel-jest": "^27.0.2",
"babel-loader": "^8.2.2",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-twin": "^1.0.2",
"babel-preset-solid": "^1.0.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"react-app-polyfill": "^2.0.0",
"rollup": "^2.51.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-node": "^10.0.0",
"twin.macro": "^2.5.0",
"typescript": "4.3"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@emotion/is-prop-valid": "^1.1.0",
"@emotion/utils": "^1.0.0",
"emotion-solid": "^1.1.1",
"lodash": "^4.17.21",
"solid-js": "^1.0.0"
},
"peerDependencies": {
"@emotion/css": "^11.1",
"solid-js": "^1.0.0"
},
"browserslist": [
"Chrome 74",
"Firefox 63",
"Safari 11",
"Edge 17",
"Node 10"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md,json}": "prettier --write"
}
}