-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.08 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
{
"name": "@worksolutions/components",
"version": "1.2.123",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"format": "prettier --write --list-different \"src/**/*.{ts,tsx,js,json,yml}\"",
"build": "rm -rf dist && cross-env NODE_ENV=production && npm run build:babel && npm run build:ts && cp -R src/primitives/Icon/icons dist/primitives/Icon/icons && cp -R src/css/*.scss dist/css",
"build:babel": "babel src -d dist --extensions '.ts,.tsx,.jsx,.js' --source-maps",
"build:ts": "node_modules/typescript/bin/tsc",
"prepublish": "npm run build",
"storybook": "start-storybook -p 6006 --no-dll",
"build-storybook": "build-storybook -o docs --no-dll",
"publish-storybook": "git checkout gh-pages && rm -rf docs && npm run build-storybook && git add docs/* && git commit -a -m 'upload storybook' && git push && git checkout master"
},
"keywords": [],
"author": "Anatoly Grabarov",
"license": "ISC",
"dependencies": {
"@ckeditor/ckeditor5-react": "^3.0.2",
"@popperjs/core": "^2.8.5",
"@types/react": "^16.*",
"@types/react-dom": "^16.*",
"@types/react-router-dom": "^5.*",
"@types/uuid": "^8.*",
"@viewstools/use-masked-input": "^2.*",
"@worksolutions/ckeditor5": "0.0.3",
"@worksolutions/react-utils": "^1.2.65",
"@worksolutions/utils": "^1.2.30",
"external-svg-sprite-loader": "^6.*",
"history": "^4.*",
"lodash": "^4.17.21",
"luxon": "^1.26.0",
"mobx": "^6.*",
"mobx-react-lite": "^3.*",
"popper-max-size-modifier": "^0.2.0",
"ramda": "^0.27.*",
"raw-loader": "^4.*",
"re-resizable": "^6.9.0",
"react": "^17.*",
"react-dom": "^17.*",
"react-popper": "^2.1.0",
"react-router-dom": "^5.*",
"react-transition-group": "^4.4.1",
"react-use": "^17.2.4",
"react-with-gesture": "^4.*",
"styled-components": "^5.2.1",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.1.21",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.2.9",
"@types/lodash": "^4.14.175",
"@types/luxon": "^1.26.2",
"@types/ramda": "^0.27.*",
"@types/react-transition-group": "^4.4.1",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"babel-loader": "^8.2.1",
"babel-plugin-styled-components": "^1.11.1",
"babel-plugin-transform-typescript-metadata": "^0.3.1",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"eslint": "^7.22.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"node-sass": "^5.0.0",
"normalize.css": "^8.0.1",
"prettier": "^2.2.1",
"react-is": "^17.0.1",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"typescript": "^4.2.2"
},
"eslintConfig": {
"extends": [
"react-app"
],
"rules": {
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error",
"react/jsx-closing-bracket-location": [
"error",
"tag-aligned"
],
"react/jsx-curly-brace-presence": [
"error",
"never"
],
"react/jsx-curly-spacing": "error",
"max-len": [
"error",
{
"code": 120,
"ignoreStrings": true,
"ignoreTrailingComments": true,
"ignoreUrls": true,
"ignoreRegExpLiterals": true
}
],
"no-unused-expressions": "error",
"no-unused-vars": "off",
"complexity": [
"error",
{
"max": 10
}
]
}
}
}