This repository was archived by the owner on Jan 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.17 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.17 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
{
"name": "@polygloat/webapp",
"version": "1.0.0-alpha.8",
"description": "Single page web application for Polygloat localization framework",
"main": "dist/index.js",
"sideEffects": false,
"scripts": {
"start": "webpack-dev-server --env.mode=development --hot",
"startProd": "webpack-dev-server --env.mode=production",
"build": "webpack --env.mode=production",
"watch": "webpack --watch",
"test": "jest",
"test:watch": "jest --watch",
"check": "tsc",
"serve": "serve ./dist -s",
"cy:run": "cypress run",
"cy:open": "cypress open"
},
"author": "Jan Cizmar",
"license": "BSD",
"dependencies": {
"@polygloat/react": "^1.0.0-alpha.3",
"@polygloat/ui": "^1.0.0-alpha.2",
"@sentry/browser": "^5.27.6",
"@types/yup": "^0.29.10",
"clsx": "^1.1.1",
"cypress-dotenv": "^1.2.2",
"formik": "^2.1.6",
"formik-material-ui": "^3.0.1",
"namor": "^2.0.2",
"notistack": "^1.0.2",
"react": "^16.14.0",
"react-dom": "^16.13.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-promise-middleware": "^6.1.2",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.7",
"tsyringe": "^4.4.0",
"webpack-cli": "^3.3.12",
"yup": "^0.28.5"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-async-to-generator": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.12.7",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@sentry/types": "^5.24.2",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/jest": "^26.0.16",
"@types/react": "16.9.17",
"@types/react-dom": "16.9.0",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.3",
"babel-plugin-transform-imports": "^2.0.0",
"babel-plugin-transform-typescript-metadata": "^0.3.1",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"copy-webpack-plugin": "^6.1.1",
"cypress": "^5.6.0",
"cypress-file-upload": "^4.1.1",
"cypress-xpath": "^1.6.1",
"dotenv": "^8.2.0",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"jest": "^26.6.3",
"query-string": "^6.13.7",
"react-column-resizer": "^1.1.9",
"react-svg-loader": "^3.0.3",
"reflect-metadata": "^0.1.13",
"serve": "^11.3.2",
"source-map-loader": "^1.1.0",
"ts-jest": "^26.4.1",
"ts-loader": "^6.2.1",
"tslint": "~6.1.3",
"typeface-roboto": "1.1.13",
"typescript": "^3.9.7",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^4.2.0",
"webpack-conditional-loader": "^1.0.12",
"webpack-dev-server": "^3.11.0"
}
}