-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.43 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
124
125
126
127
128
{
"version": "1.17.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "BABEL_ENV=production tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "echo 'Skipping prepare script'",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "start-storybook -p 6006 -s ./static",
"build-storybook": "build-storybook -s ./static",
"release": "npm run np",
"np": "np",
"chromatic": "npx chromatic --project-token=cf012f960a6d"
},
"np": {
"yarn": false,
"branch": "main"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16",
"webpack": ">=5"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@galaxy/react",
"author": "DigitalCube",
"module": "dist/shifter.esm.js",
"size-limit": [
{
"path": "dist/shifter.cjs.production.min.js",
"limit": "1000 KB"
},
{
"path": "dist/shifter.esm.js",
"limit": "500 KB"
}
],
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.0",
"@rollup/plugin-image": "^2.0.6",
"@size-limit/preset-small-lib": "^5.0.1",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.5.16",
"@storybook/addons": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.5.16",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/chart.js": "^2.9.34",
"@types/node": "^15.12.5",
"@types/punycode": "^2.1.0",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-gravatar": "^2.6.8",
"@types/react-router-dom": "^5.1.7",
"babel-loader": "^8.4.1",
"babel-preset-react-app": "^10.0.1",
"chromatic": "^5.10.2",
"css-loader": "^6.2.0",
"eslint-plugin-prettier": "^3.4.0",
"fibers": "^5.0.0",
"husky": "^7.0.0",
"jest-svg-transformer": "^1.0.0",
"jest-transform-stub": "^2.0.0",
"np": "^7.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"rollup-plugin-copy-assets": "^2.0.3",
"rollup-plugin-import-css": "^2.0.1",
"rollup-plugin-scss": "^3.0.0",
"sass": "^1.38.1",
"sass-loader": "^12.1.0",
"size-limit": "^5.0.1",
"storybook-addon-root-attribute": "^1.0.2",
"style-loader": "^3.2.1",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"webpack": "^5.51.1"
},
"dependencies": {
"bootstrap": "4.*.*",
"chart.js": "2",
"dayjs": "^1.10.7",
"punycode": "^2.1.1",
"react-chartjs-2": "2",
"react-content-loader": "^6.0.3",
"react-gravatar": "^2.6.3",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"reactstrap": "^8.9.0"
}
}