This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.4 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
{
"name": "@tecsinapse/text-editor",
"description": "TecSinapse Text Editor",
"homepage": "https://github.com/tecsinapse/text-editor#readme",
"version": "2.0.2",
"main": "dist/index.cjs.js",
"module": "build/index.js",
"author": {
"name": "TecSinapse"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tecsinapse/text-editor.git"
},
"bugs": {
"url": "https://github.com/tecsinapse/text-editor/issues"
},
"keywords": [
"editor",
"react",
"tecsinapse",
"text",
"ui-kit"
],
"dependencies": {
"@material-ui/core": "^4.11.1",
"@material-ui/styles": "^4.11.1",
"@tecsinapse/ui-kit": "5.6.0",
"@tinymce/tinymce-react": "^3.12.2",
"prop-types": "^15.7.2",
"tinymce": "^5.7.1",
"tinymce-i18n": "^20.12.25"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@storybook/addon-docs": "^5.3.19",
"@storybook/react": "^5.3.19",
"@storybook/theming": "^5.3.19",
"@tecsinapse/eslint-config-tecsinapse-js": "^3.0.3",
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react": "^9.5.0",
"babel-core": "^7.0.0-beta.3",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-inline-react-svg": "^1.0.1",
"core-js": "^3.6.5",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-mdx": "^1.8.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-hooks": "^2.5.1",
"git-dirty": "^1.0.2",
"husky": "^1.3.1",
"jest": "^26.4.0",
"lint-staged": "^8.1.3",
"markdown-to-jsx": "^6.10.3",
"npm-check-updates": "^3.1.23",
"prettier": "^2.0.5",
"prettier-plugin-packagejson": "^2.2.5",
"promise-polyfill": "^8.1.3",
"react-popper": "^1.3.4",
"react-textarea-autosize": "^7.1.0",
"regenerator-runtime": "^0.12.1",
"rimraf": "^2.6.3",
"rollup": "^0.68.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"source-map-explorer": "^2.0.0"
},
"files": [
"build",
"dist"
],
"scripts": {
"analyze": "npx source-map-explorer 'dist/*.js'",
"build": "rimraf -rf build/ && babel src/ -d build/ && rollup -c",
"build-all": "yarn build && yarn storybook:build",
"build-publish": "yarn build-all && npm publish",
"dev": "rollup -c -w",
"start": "yarn install && yarn storybook",
"storybook": "start-storybook -p 9001 -c .storybook -s ./storybook-public",
"storybook:build": "build-storybook -c .storybook -s ./storybook-public -o docs/",
"test": "NODE_ENV=test jest",
"test:windows": "set NODE_ENV=test&& jest"
},
"license": "MIT",
"husky": {
"hooks": {
"post-commit": "git update-index --again",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --max-warnings=0 --fix --no-ignore",
"prettier --write",
"git add"
]
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"sideEffects": false
}