-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.53 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
{
"name": "@romanmazyrin/amocrm_widget_framework",
"version": "0.0.6",
"description": "Ready-to-use library to easy start your widget for amoCRM",
"main": "./dist/build.min.js",
"author": "Roman Mazyrin",
"license": "MIT",
"files": [
"README.md",
"dist/",
"docs/"
],
"scripts": {
"prepare": "husky install",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --config webpack/webpack.config.dev.js",
"build": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.build.js",
"test": "jest --collectCoverage && jest-coverage-badges",
"lint": "npx eslint --color --fix --ext .jsx --ext .js src/**",
"lint:staged": "npx lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"eslint --color --fix"
]
},
"dependencies": {
"axios": "^1.4.0",
"classnames": "^2.3.2",
"effector": "^22.8.6",
"effector-react": "^22.5.3",
"intl-tel-input": "^17.0.21",
"lodash.clonedeepwith": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"prop-types": "^15.8.1",
"qs": "^6.11.2",
"toastify-js": "^1.12.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-throw-expressions": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-coverage-badges": "^1.1.2",
"lint-staged": "^13.2.3",
"path": "^0.12.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"stripcomment-loader": "^0.1.0",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"twig": "^1.16.0",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
}
}