forked from maxershov/webcrm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.73 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.73 KB
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
{
"name": "web-react-crm",
"version": "2.0.0",
"description": "CRM App",
"main": "index.jsx",
"keywords": [
"react-table",
"react-calendar",
"CRM"
],
"scripts": {
"test": "jest --updateSnapshot --config ./jest.config.json",
"test-shot": "jest --config ./jest.config.json",
"lint": "eslint --ext .jsx --ext .js src/",
"dev": "webpack-dev-server --config ./devWebpack.config.js",
"prod": "cross-env NODE_ENV=production webpack-dev-server --config ./webpack.config.js",
"local": "cross-env NODE_ENV=production node ./backend/local.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"createDb": "node ./emptyDb/createDb.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxershov/Web-React-CRM.git"
},
"engines": {
"node": "12.14.1",
"npm": "6.13.4"
},
"author": "MaxErshov",
"license": "MIT",
"bugs": {
"url": "https://github.com/maxershov/Web-React-CRM/issues"
},
"homepage": "https://github.com/maxershov/Web-React-CRM#readme",
"dependencies": {
"@babel/polyfill": "^7.11.5",
"body-parser": "^1.19.0",
"connect-history-api-fallback": "^1.6.0",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"date-fns": "^2.16.1",
"express": "^4.17.1",
"express-static-gzip": "^2.0.8",
"knex": "^0.21.6",
"multer": "^1.4.2",
"network-list": "^1.1.5",
"open": "^7.3.0",
"preact": "^10.5.4",
"react-calendar": "^3.1.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-table-6": "^6.11.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"sqlite3": "^5.0.0",
"whatwg-fetch": "^3.4.1"
},
"browserslist": [
">1%",
"not OperaMini all"
],
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/preset-env": "^7.12.0",
"@babel/preset-react": "^7.10.4",
"@testing-library/dom": "^7.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"compression-webpack-plugin": "^6.0.3",
"cross-fetch": "^3.0.6",
"css-loader": "^5.0.0",
"cssnano": "^4.1.10",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^2.2.3",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-preact": "^1.1.1",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"file-loader": "^6.1.1",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.5.3",
"jest-fetch-mock": "^3.0.3",
"mini-css-extract-plugin": "^1.0.0",
"mockdate": "^3.0.2",
"node-sass": "^4.14.1",
"postcss-loader": "^4.0.4",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.1.2",
"puppeteer-core": "^5.3.1",
"redux-logger": "^3.0.6",
"redux-mock-store": "^1.5.4",
"regenerator-runtime": "^0.13.7",
"sass-loader": "^10.0.3",
"stylelint": "^13.7.2",
"stylelint-no-unsupported-browser-features": "^4.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0",
"webpack-monitor": "^1.0.14"
}
}