-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.8 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
{
"name": "ebrains-wizard",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ebrains/kg-core": "^0.9.6",
"@rjsf/antd": "^5.0.0-beta.20",
"@rjsf/core": "^5.0.0-beta.20",
"@rjsf/validator-ajv8": "^5.0.0-beta.18",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"antd": "^5.1.2",
"antd-img-crop": "^4.5.2",
"atob": "^2.1.2",
"axios": "^0.27.2",
"bootstrap": "4.6.0",
"child_process": "^1.0.2",
"ejs": "^2.6.1",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"fetch": "^1.1.0",
"file-saver": "2.0.5",
"jquery": "^1.9.1",
"lodash-uuid": "0.0.3",
"mathjs": "^11.5.0",
"moment": "^2.20.0",
"node-fetch": "^2.6.7",
"nodemailer": "^6.7.8",
"npm": "^7.24.1",
"popper.js": "^1.16.1",
"react": "^16.14.0",
"react-bootstrap": "1.6.1",
"react-bootstrap-table": "^4.3.1",
"react-bootstrap-typeahead": "^3.3.2",
"react-day-picker": "^7.1.10",
"react-dom": "^17.0.2",
"react-json-view": "^1.21.3",
"react-jsonschema-form": "^1.8.1",
"react-jsonschema-form-extras": "^0.9.67",
"react-router-dom": "^6.6.1",
"react-rte": "^0.15.0",
"react-scripts": "4.0.3",
"require-all": "^3.0.0",
"save": "^2.5.0",
"universal-cookie": "^4.0.4",
"web-vitals": "^1.1.2"
},
"devDependencies": {
"nodemon": "^2.0.15"
},
"scripts": {
"build": "react-scripts build",
"postinstall": "node setup.js",
"devstart": "export NODE_ENV=development && nodemon server/server.js",
"start": "export NODE_ENV=production && node server/server.js",
"dockerstart": "export NODE_ENV=production && node setup.js && node server/server.js",
"dev": "node server/internal/assembleSchemas.js && react-scripts start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src/"
},
"proxy": "http://localhost:8080",
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"description": "The EBRAINS Metadata Wizard is a web form that helps you describe key aspects of your research data so that other researchers will be able to find, reuse and cite your work once you share it on [EBRAINS](ebrains.eu).",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/HumanBrainProject/ebrains_wizard.git"
},
"keywords": [],
"author": "EBRAINS Data Curation Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/HumanBrainProject/ebrains_wizard/issues"
},
"homepage": "."
}