-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.51 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.51 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
{
"version": "0.2.4",
"license": "MIT",
"name": "@lambda-curry/nybll-component-library",
"repository": "git://github.com/lambda-curry/nybll-component-library.git",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": "Jared Hill",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/component-library.esm.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' + && yarn",
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"format": "prettier --write \"(src|test|types)/**/*.{js,jsx,ts,tsx,scss}\""
},
"peerDependencies": {
"@lambdacurry/component-library": "^4.0.0",
"@material-ui/styles": "^4.11.3",
"react": ">=16",
"react-dom": "^16.13.1"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"dependencies": {
"classnames": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@lambdacurry/component-library": "^4.0.0",
"@material-ui/styles": "^4.11.3",
"@size-limit/preset-small-lib": "^4.8.0",
"@storybook/addon-a11y": "^6.1.1",
"@storybook/addon-essentials": "^6.1.1",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.1.1",
"@storybook/addon-storysource": "^6.1.1",
"@storybook/addons": "^6.1.1",
"@storybook/react": "^6.1.1",
"@svgr/rollup": "^5.5.0",
"@types/classnames": "^2.2.11",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"babel-loader": "^8.2.1",
"babel-plugin-react-require": "^3.1.3",
"babel-preset-react-app": "^10.0.0",
"css-loader": "^5.0.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"node-sass": "^6.0.1",
"postcss-import": "^13.0.0",
"postcss-loader": "^4.1.0",
"postcss-scss": "^3.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-url": "^3.0.1",
"sass": "^1.43.4",
"sass-loader": "^10.1.0",
"size-limit": "^4.8.0",
"style-loader": "^2.0.0",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
}
}