This repository has been archived by the owner on Dec 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
105 lines (105 loc) · 3.34 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
{
"name": "easy-deposit-ui",
"version": "1.0.14-SNAPSHOT",
"description": "Self-deposit user web-interface",
"main": "src/main/typescript/client.tsx",
"scripts": {
"start": "webpack-dev-server --mode development --hot --open --config webpack/dev.config.js",
"build": "webpack --mode production --config webpack/prod.config.js",
"test": "mocha -r ts-node/register src/test/**/*.spec.ts",
"mockserver": "webpack --mode development --config webpack/mockserver.config.js && node target/build-mockserver/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DANS-KNAW/easy-deposit-ui.git"
},
"author": "DANS/KNAW",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/DANS-KNAW/easy-deposit-ui/issues"
},
"homepage": "https://github.com/DANS-KNAW/easy-deposit-ui",
"browserslist": [
"defaults and >0.2%"
],
"dependencies": {
"axios": "^0.21.2",
"history": "^4.10.1",
"lodash": "^4.17.21",
"npm": "^9.1.3",
"object-path-immutable": "^4.1.0",
"react": "^16.13.1",
"react-datepicker": "^2.16.0",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-textarea-autosize": "^7.1.2",
"redux": "^4.0.5",
"redux-form": "8.3.2",
"redux-logger": "^3.0.6",
"redux-promise-middleware": "^6.1.2",
"redux-thunk": "^2.3.0",
"selfsigned": "^2.1.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@types/chai": "^4.2.12",
"@types/cors": "^2.8.7",
"@types/dateformat": "^3.0.1",
"@types/express": "^4.17.8",
"@types/express-fileupload": "^1.1.4",
"@types/history": "^4.7.7",
"@types/lodash": "^4.14.161",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.17",
"@types/react": "^16.9.49",
"@types/react-datepicker": "^2.11.1",
"@types/react-dom": "^16.9.8",
"@types/react-hot-loader": "^4.1.1",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/react-textarea-autosize": "^4.3.5",
"@types/redux-form": "^8.3.0",
"@types/redux-logger": "^3.0.8",
"@types/uuid": "^7.0.4",
"@types/valid-url": "^1.0.3",
"@types/webpack-env": "^1.15.2",
"ajv": "^6.12.4",
"autoprefixer": "^9.8.6",
"awesome-typescript-loader": "^5.2.1",
"chai": "^4.2.0",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"css-hot-loader": "^1.4.4",
"css-loader": "^3.6.0",
"dateformat": "^3.0.3",
"elliptic": "^6.5.4",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.4.1",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-custom-properties": "^9.1.1",
"postcss-loader": "^3.0.0",
"react-app-polyfill": "^1.0.6",
"react-hot-loader": "^4.12.21",
"redux-devtools-extension": "^2.13.8",
"source-map-loader": "^0.2.4",
"terser-webpack-plugin": "^2.3.8",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"uuid": "^7.0.3",
"webpack": "^5.75.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2",
"websocket-extensions": "^0.1.4"
}
}