-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 3.8 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
{
"name": "ws-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-app-rewired start",
"build": "NODE_ENV=production concurrently -p '[{name}]' -n 'CLIENT,BACKEND' -c 'blue.bold,green.bold' 'react-app-rewired --max-old-space-size=1024 build' 'cd proxyServer && npm run build'",
"serve-production-proxy": "NODE_ENV=production cd proxyServer && npm run start:prod",
"serve-production-proxy:win": "set NODE_ENV=production && cd proxyServer && npm run start:prod",
"test": "react-app-rewired test",
"format": "prettier --write --list-different \"src/**/*.{ts,tsx,js,json,yml}\" \"proxyServer/src/**/*.{ts,tsx,js,json,yml}\"",
"lint": "eslint src --ext .ts,.js,.jsx --fix",
"fix-import-order": "node tools/autoOrdererImports -r src/",
"convert-main-config-to-yaml": "node tools/convertMainConfigToYaml"
},
"dependencies": {
"@ckeditor/ckeditor5-react": "^3.0.2",
"@popperjs/core": "2.4.0",
"@types/resize-observer-browser": "0.1.3",
"@viewstools/use-masked-input": "^2.0.1",
"@worksolutions/ckeditor5": "https://github.com/belikcost/ckeditor5.git",
"axios": "0.21.1",
"concurrently": "^5.3.0",
"js-cookie": "2.2.1",
"json2yaml": "^1.1.0",
"jsonous": "5.0.1",
"lodash": "4.17.20",
"mobx": "5.15.4",
"mobx-react-lite": "2.0.7",
"mobx-utils": "^5.6.1",
"moment": "2.25.3",
"normalize.css": "8.0.1",
"npm": "^6.14.6",
"password-validator": "^5.1.0",
"prismjs": "^1.20.0",
"ramda": "0.27.0",
"raw-loader": "^4.0.1",
"rc-pagination": "^2.4.3",
"react": "16.13.1",
"react-circle-progress-bar": "0.1.3",
"react-dom": "16.13.1",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.1",
"react-spring": "9.0.0-rc.3",
"react-table": "7.2.1",
"react-use": "15.3.0",
"react-with-gesture": "4.0.8",
"reflect-metadata": "0.1.13",
"styled-components": "4.3.2",
"transliteration": "^2.1.11",
"typedi": "0.8.0",
"uuid": "^8.3.0",
"vanilla-lazyload": "^17.5.0"
},
"devDependencies": {
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.3.2",
"@testing-library/user-event": "7.1.2",
"@types/http-proxy-middleware": "^0.19.3",
"@types/jest": "24.9.1",
"@types/lodash": "4.14.154",
"@types/node": "12.12.42",
"@types/prismjs": "^1.16.1",
"@types/ramda": "0.27.6",
"@types/react": "16.9.35",
"@types/react-dom": "16.9.8",
"@types/react-router": "5.1.7",
"@types/react-router-dom": "5.1.5",
"@types/react-table": "7.0.19",
"@types/styled-components": "5.1.0",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.24.0",
"body-parser": "^1.19.0",
"cookie-parser": "1.4.5",
"dotenv": "8.2.0",
"dotenv-webpack": "1.8.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react-hooks": "2.0.1",
"express": "4.17.1",
"express-reload": "1.2.0",
"form-data": "^3.0.0",
"http-proxy-middleware": "^1.0.4",
"husky": "4.2.5",
"lint-staged": "10.2.2",
"multer": "^1.4.2",
"node-mock-server": "0.25.4",
"nodemon": "2.0.4",
"prettier": "2.0.2",
"react-app-rewire-external-svg-loader": "1.1.0",
"react-app-rewire-styled-components": "3.0.2",
"react-app-rewired": "2.1.6",
"typescript": "3.9.2"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}