-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
116 lines (116 loc) · 3.49 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
{
"name": "react-invenio-forms",
"version": "4.5.1",
"description": "Reusable React components for forms and other in Invenio",
"main": "dist/cjs/index.js",
"browser": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"start": "react-scripts start",
"build": "rimraf dist && NODE_ENV=production rollup -c --failAfterWarnings --inlineDynamicImports",
"edit-linked-package": "json -I -f ./dist/package.json -e 'this.module=\"esm/index.js\", this.main=\"cjs/index.js\", this.browser=\"cjs/index.js\"' ",
"prelink-dist": "cp package.json ./dist && npm run edit-linked-package",
"link-dist": "cd dist && npm link",
"postlink-dist": "cd dist && rm -rf node_modules",
"unlink-dist": "cd dist && npm unlink && rm package*",
"watch": "NODE_ENV=development rollup --watch --inlineDynamicImports -c",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src/ --ext .js",
"format": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --write \"src/**/*.js\""
},
"peerDependencies": {
"@babel/runtime": "^7.9.0",
"@semantic-ui-react/css-patch": "^1.0.0",
"@tinymce/tinymce-react": "^4.3.0",
"axios": "^1.7.7",
"formik": "^2.1.0",
"lodash": "^4.17.0",
"luxon": "^1.23.0",
"query-string": "^7.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"semantic-ui-css": "^2.4.0",
"semantic-ui-react": "^2.1.0",
"tinymce": "^6.7.2",
"react-overridable": "^0.0.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@inveniosoftware/eslint-config-invenio": "^2.0.0",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.0",
"@semantic-ui-react/css-patch": "^1.0.0",
"@testing-library/jest-dom": "^4.2.0",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.0",
"@tinymce/tinymce-react": "^4.3.0",
"ajv": "^8.0.0",
"ajv-keywords": "^5.0.0",
"axios": "^1.7.7",
"coveralls": "^3.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.0",
"expect": "^26.0.0",
"formik": "^2.1.0",
"json": "^9.0.0",
"lodash": "^4.17.0",
"luxon": "^1.23.0",
"query-string": "^7.0.0",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-scripts": "^5.0.1",
"rimraf": "^3.0.0",
"rollup": "^2.10.0",
"rollup-plugin-local-resolve": "^1.0.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-url": "^3.0.0",
"semantic-ui-css": "^2.4.0",
"semantic-ui-react": "^2.1.0",
"tinymce": "^6.7.2",
"typescript": "^4.9.5",
"yup": "^0.32.11"
},
"author": {
"name": "CERN",
"email": "[email protected]"
},
"homepage": "https://inveniosoftware.github.io/react-invenio-forms/",
"bugs": {
"url": "https://github.com/inveniosoftware/react-invenio-forms/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/inveniosoftware/react-invenio-forms.git"
},
"keywords": [
"react",
"react-component",
"react-invenio-forms",
"forms",
"react forms"
],
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not IE 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=16.0.0"
}
}