This repository was archived by the owner on Jul 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.34 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
{
"name": "publiccode-editor",
"version": "1.4.3",
"license": "AGPL-3.0-or-later",
"description": "[License](./LICENSE)",
"scripts": {
"dev": "webpack serve --mode development --host 127.0.0.1 --port 6014 --allowed-hosts .toomore.net",
"lint": "eslint src/app/**/*.js",
"build-dev": "webpack --config webpack.config.js",
"build-prod": "webpack --config webpack.config.prod.js",
"test": "jest",
"deploy": "gh-pages -u 'Deploy Bot <no-reply@teamdigitale.governo.it>' -d dist",
"postinstall": "patch-package",
"release": "release-it"
},
"keywords": [
"publiccode",
"editor"
],
"author": "Lorenzo Ponticelli <point.point@gmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:italia/publiccode-editor.git"
},
"jest": {
"moduleNameMapper": {
"^.+.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": "<rootDir>/src/__mocks__/svgImportMock.js",
"^worker-loader!.*": "<rootDir>/src/__mocks__/workerMock.js"
}
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/eslint-parser": "^7.13.14",
"@babel/eslint-plugin": "^7.13.16",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/runtime": "^7.13.17",
"@release-it/bumper": "^3.0.1",
"@release-it/conventional-changelog": "^3.3.0",
"@testing-library/jest-dom": "^5.12.0",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.4",
"eslint": "^7.24.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react": "^7.23.2",
"extract-text-webpack-plugin": "^3.0.2",
"faker": "^5.5.3",
"file-loader": "^6.2.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^5.3.1",
"import-glob-loader": "^1.1.0",
"jest": "^26.6.3",
"node-sass": "^7.0.0",
"patch-package": "^6.4.7",
"postcss-loader": "^5.2.0",
"process": "^0.11.10",
"react-test-renderer": "^17.0.2",
"release-it": "^14.11.5",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.35.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@reduxjs/toolkit": "^1.5.1",
"bootstrap": "^4.6.0",
"classnames": "^2.3.1",
"cldr-data": "^36.0.0",
"clean-deep": "^3.4.0",
"copy-to-clipboard": "^3.3.1",
"deepmerge": "^4.2.2",
"design-react-kit": "^3.3.3",
"dotenv": "^8.2.0",
"draft-js": "^0.11.7",
"globalize": "^1.6.0",
"i18next": "^20.2.1",
"immutable": "^4.0.0-rc.12",
"js-yaml": "3.14.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^1.5.0",
"prop-type": "^0.0.1",
"rc-collapse": "^3.1.0",
"react": "^17.0.2",
"react-collapsible": "^2.8.3",
"react-dom": "^17.0.2",
"react-draft-wysiwyg": "^1.14.6",
"react-hook-form": "^6.15.4",
"react-i18next": "^11.8.13",
"react-jss": "^10.6.0",
"react-notify": "^3.0.0",
"react-phone-number-input": "^3.1.19",
"react-redux": "^7.2.3",
"react-rte": "^0.16.3",
"react-widgets": "^4.4.10",
"react-widgets-globalize": "^5.0.23",
"slugify": "^1.5.0",
"updeep": "^1.2.0",
"validator": "^13.6.0"
}
}