-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.82 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
{
"name": "@seagreenio/react-bulma",
"version": "0.1.0-beta.4",
"description": "Bulma in React.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"storybook": "start-storybook -p 6006 --quiet --no-open",
"build-storybook": "build-storybook",
"rollup": "rollup -c",
"types": "tsc --emitDeclarationOnly",
"build": "concurrently -c green --names 'rollup,types' 'yarn rollup' 'yarn types'",
"clean": "rimraf dist",
"test": "jest",
"update-snapshots": "jest -u",
"format": "prettier . --write",
"prepublishOnly": "yarn test && yarn build",
"prepare": "is-ci || husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/seagreenio/react-bulma.git"
},
"keywords": [
"Bulma",
"React"
],
"author": "Yue Yang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/seagreenio/react-bulma/issues"
},
"homepage": "https://github.com/seagreenio/react-bulma",
"dependencies": {
"@babel/runtime": "^7.20.1",
"clsx": "^1.2.1",
"lodash.difference": "^4.5.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@g1eny0ung/babel-plugin-transform-react-handled-props": "^2.2.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@storybook/addon-controls": "^6.5.13",
"@storybook/addon-docs": "^6.5.13",
"@storybook/addon-storyshots": "^6.5.13",
"@storybook/addon-storysource": "^6.5.13",
"@storybook/addon-viewport": "^6.5.13",
"@storybook/addons": "^6.5.13",
"@storybook/react": "^6.5.13",
"@storybook/theming": "^6.5.13",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/jest": "^27.4.0",
"@types/lodash.difference": "^4.5.6",
"babel-jest": "^27.4.6",
"babel-loader": "^9.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"concurrently": "^7.5.0",
"husky": "^8.0.2",
"is-ci": "^3.0.1",
"jest": "^27.4.7",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.0",
"rollup": "^2.64.0",
"tslib": "^2.4.1",
"tslint": "^6.1.2",
"tslint-react": "^5.0.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"jest": {
"testEnvironment": "jsdom"
},
"lint-staged": {
"*.{js,ts?(x)}": "prettier --write"
},
"packageManager": "[email protected]"
}