This repository has been archived by the owner on Sep 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.72 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": "ui-offline",
"version": "3.10.0",
"description": "ManyWho offline services and components",
"author": "ManyWho",
"repository": {
"type": "git",
"url": "https://github.com/manywho/ui-offline.git"
},
"scripts": {
"docs": "typedoc js --out docs --ignoreCompilerErrors --mode modules & start docs/index.html",
"start": "webpack --config webpack.development.config.js --env.build=../ui-html5/build",
"dist": "webpack --config webpack.production.config.js",
"offline": "node ./js/metaData.js",
"precommit": "lint-staged",
"test": "jest",
"lint": "eslint --ext .js --ext .ts --ext .tsx js/** __tests__/**"
},
"lint-staged": {
"*.ts": "eslint",
"*.tsx": "eslint"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/redux": "^3.6.31",
"@types/request-promise": "^4.1.46",
"@types/uglifyjs-webpack-plugin": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"css-loader": "^3.5.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.2.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"jest-junit-reporter": "^1.1.0",
"less": "^3.11.3",
"less-loader": "^6.1.0",
"lint-staged": "^10.2.10",
"moment": "^2.27.0",
"script-loader": "^0.7.2",
"style-loader": "^1.2.1",
"ts-jest": "^26.1.0",
"ts-loader": "^7.0.5",
"typedoc": "^0.17.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"worker-loader": "^2.0.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"js/**/*.{js,jsx,ts,tsx}",
"workers/**/*.{js,jsx,ts,tsx}",
"!**/node_modules/**",
"!**/vendor/**"
],
"setupFiles": [
"<rootDir>/test-setup.js"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"setupFilesAfterEnv": [
"<rootDir>/setup-tests-globals.js"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy",
"worker.js": "<rootDir>/__mocks__/workerMock.js",
"\\.svg$": "<rootDir>/__mocks__/SvgIcons.tsx"
},
"testResultsProcessor": "./node_modules/jest-junit-reporter"
},
"dependencies": {
"clean-webpack-plugin": "^3.0.0",
"fs-promise": "^2.0.3",
"localforage": "1.7.4",
"ramda": "^0.27.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-svg-loader": "^3.0.3",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"request-promise": "^4.2.5",
"typescript": "^3.9.5",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack-bundle-analyzer": "^3.8.0",
"write-file": "1.0.0",
"yargs": "^15.3.1"
}
}