-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.75 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
117
118
119
120
121
122
123
{
"name": "lotcheck-ui",
"version": "1.0.10",
"private": true,
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development --open --port 3000",
"lint": "eslint . --ext .ts,tsx --max-warnings 0",
"lintfix": "eslint . --ext .ts,tsx --fix ",
"test": "jest --coverage",
"tsc": "tsc",
"build-rpm": "node build-rpm.js",
"release": "release-it -n",
"rename-build": "renamer -v --replace lotcheck dist",
"write-version-file": "node create-version-json.js"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.4.4",
"copy-webpack-plugin": "^5.0.3",
"core-js": "^2.5.7",
"dotenv-webpack": "^1.7.0",
"jest-dom": "^3.5.0",
"moment": "~2.24.0",
"moment-timezone": "~0.5.23",
"path-to-regexp": "^3.0.0",
"react": "~16.8.1",
"react-dom": "~16.8.1",
"react-dropzone": "~10.1.0",
"react-loading": "~2.0.3",
"react-localization": "^1.0.13",
"react-modal": "~3.8.1",
"react-router-dom": "~4.3.1",
"react-table": "~6.9.2",
"react-toastify": "~4.5.2",
"yarn": "^1.16.0",
"yup": "~0.26.10"
},
"devDependencies": {
"@babel/core": "~7.2.2",
"@babel/plugin-proposal-class-properties": "~7.3.0",
"@babel/preset-env": "~7.3.1",
"@babel/preset-react": "~7.0.0",
"@babel/preset-typescript": "~7.1.0",
"@testing-library/react": "^8.0.4",
"@types/fetch-mock": "~7.2.3",
"@types/jest": "~23.3.13",
"@types/moment-timezone": "~0.5.10",
"@types/node": "~10.12.21",
"@types/react": "~16.8.2",
"@types/react-dom": "~16.8.0",
"@types/react-dropzone": "~4.2.2",
"@types/react-modal": "~3.8.1",
"@types/react-router-dom": "~4.3.1",
"@types/react-table": "^6.7.22",
"@types/react-test-renderer": "~16.8.0",
"@types/yup": "~0.26.10",
"@typescript-eslint/eslint-plugin": "~1.2.0",
"@typescript-eslint/parser": "~1.2.0",
"babel-core": "~7.0.0-bridge.0",
"babel-eslint": "~10.0.1",
"babel-loader": "^8.0.6",
"css-loader": "~2.1.0",
"eslint-plugin-react-extra": "~0.1.0",
"fetch-mock": "~7.3.0",
"file-loader": "~3.0.1",
"html-loader": "~0.5.5",
"html-webpack-plugin": "~3.2.0",
"identity-obj-proxy": "~3.0.0",
"jest": "^24.8.0",
"jest-teamcity-reporter": "~0.9.0",
"lodash-webpack-plugin": "~0.11.5",
"mini-css-extract-plugin": "~0.5.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "~5.0.1",
"postcss-loader": "^2.1.5",
"prettier": "~1.16.4",
"react-mock-router": "~1.0.15",
"release-it": "^12.3.3",
"renamer": "~1.1.1",
"rpm-builder": "~1.0.0",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"terser-webpack-plugin": "~1.2.2",
"ts-jest": "~23.10.5",
"typescript": "~3.2.1",
"url-loader": "~1.1.2",
"webpack": "~4.28.4",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "~3.2.1",
"webpack-dev-server": "~3.1.14"
},
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"moduleNameMapper": {
"\\.scss": "identity-obj-proxy",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
},
"testMatch": [
"**/__tests__/**/*.test.+(ts|tsx)"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"transformIgnorePatterns": [],
"collectCoverageFrom": [
"src/js/**/*.ts",
"src/js/**/*.tsx"
],
"testResultsProcessor": "jest-teamcity-reporter"
},
"description": "Install nodejs\r Install yarn",
"main": "babel.config.js",
"repository": "https://bitbucket.noa.com/scm/tptm/lotcheck-ui.git",
"author": "",
"license": "ISC"
}