forked from inveniosoftware/react-invenio-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.18 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
{
"name": "react-invenio-forms",
"version": "0.9.2",
"description": "React components to build forms 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",
"edit-linked-package": "json -I -f ./dist/package.json -e 'this.module=\"esm/index.js\", this.main=\"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 -c",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.js",
"format": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --write \"src/**/*.js\""
},
"dependencies": {},
"peerDependencies": {
"axios": "^0.21.1",
"formik": "^2.1.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"lodash": "^4.17.15",
"query-string": "^7.0.1",
"semantic-ui-react": "^0.88.0",
"semantic-ui-css": "^2.4.1",
"@babel/runtime": "^7.9.0",
"@ckeditor/ckeditor5-build-classic": "^16.0.0",
"@ckeditor/ckeditor5-react": "^2.1.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"coveralls": "^3.0.7",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"expect": "^26.0.1",
"formik": "^2.1.4",
"json": "^9.0.6",
"lodash": "^4.17.15",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"rimraf": "^3.0.0",
"rollup": "^2.10.0",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^3.1.1",
"rollup-plugin-url": "^3.0.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.0",
"yup": "^0.28.3"
},
"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"
],
"eslintConfig": {
"extends": "react-app"
},
"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": ">=10.0.0"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}