-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.55 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
{
"name": "dreifuss-editor",
"private": true,
"version": "1.0.0",
"engines": {
"node": "^16.0.0",
"yarn": "^1.22.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --stream",
"clean": "lerna run clean --parallel",
"watch": "lerna run watch --parallel",
"dev": "run-p --print-label watch",
"prettier": "prettier --write '{packages,services}/**/*.{js,ts,tsx,json}'",
"prettier-check": "prettier --check '{packages,services}/**/*.{js,ts,tsx,json}'",
"storybook": "yarn workspace @dreifuss-wysiwyg-editor/core storybook"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-import": "^1.13.3",
"babel-plugin-inline-json-import": "^0.3.2",
"babel-plugin-prismjs": "2.0.1",
"babel-plugin-styled-components": "^1.12.0",
"css-loader": "^5.2.6",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-i18next": "^5.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^6.2.0",
"husky": "^3.0.0",
"lerna": "^4.0.0",
"lerna-changelog": "^1.0.1",
"less": "^4.1.1",
"less-loader": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.1",
"pretty-quick": "^1.11.1",
"rollup": "^2.52.2",
"rollup-plugin-includepaths": "^0.2.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-styles": "^3.14.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"style-loader": "^3.0.0",
"ts-loader": "^9.2.3",
"tslib": "^2.3.0",
"typescript": "^4.3.4",
"url-loader": "^4.1.1",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-twin": "^1.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern '{examples,packages,services}/**/*.{js,ts,tsx,json}'"
}
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"react",
"standard"
],
"extends": [
"standard",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"prettier",
"prettier/@typescript-eslint",
"prettier/react",
"prettier/standard"
],
"rules": {
"no-use-before-define": [
0
],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-use-before-define": [
1
]
},
"env": {
"es6": true,
"node": true
},
"ignorePatterns": [
"node_modules",
"dist",
"lib",
"coverage",
"assets"
]
}
}