-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.19 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
{
"name": "flight-planner",
"version": "1.0.0",
"description": "Flight planner for DCS",
"keywords": [],
"author": "Zdenek Hruska",
"license": "UNLICENSED",
"private": true,
"scripts": {
"start": "yarn && yarn run watch",
"build": "yarn webpack --config=webpack.config.production.js",
"build:dev": "yarn webpack",
"build:prod": "yarn webpack --config=webpack.config.production.js",
"analyze": "yarn webpack --config=webpack.config.bundleAnalyzer.js",
"watch": "yarn webpack -w",
"watch:dev": "yarn webpack -w",
"watch:prod": "yarn webpack --config=webpack.config.production.js -w",
"lint": "yarn eslint './src/**/*.ts*'",
"test": "yarn jest -w 4",
"test:watch": "yarn jest -w 4 --watch",
"test:coverage": "yarn jest --coverage"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "16.0"
}
}
],
"@babel/react"
]
},
"jest": {
"automock": false,
"maxWorkers": "50%",
"modulePathIgnorePatterns": [
"<rootDir>/.*/__mocks__"
],
"testEnvironmentOptions": {
"url": "http://localhost/"
},
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.test.json"
}
],
"^.+\\.jsx?$": "babel-jest",
".+\\.(sass)$": "jest-css-modules-transform"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.jsx?$",
"testPathIgnorePatterns": [
"/node_modules/",
".*__[a-zA-Z]*\\.(j|t)sx?$"
],
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {
"^app/(.*)\\.(tsx?|jsx?)$": "<rootDir>/app/$1.$2",
"^ui/(.*)\\.(tsx?|jsx?)$": "<rootDir>/ui/$1.$2",
"^utils/(.*)\\.(tsx?|jsx?)$": "<rootDir>/utils/$1.$2"
},
"collectCoverageFrom": [
"src/*/**/*.{ts,tsx,js,jsx}",
"!.*__[a-zA-Z]*\\.(j|t)sx?$",
"!src/*/**/*.js"
]
},
"dependencies": {
"classnames": "2.3.2",
"immutable": "4.0.0-rc.12",
"jszip": "^3.10.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"sprintf-js": "1.1.2"
},
"devDependencies": {
"@babel/core": "7.22.10",
"@babel/preset-env": "7.22.10",
"@babel/preset-react": "7.22.5",
"@types/node": "20.5.1",
"@types/react-dom": "18.2.7",
"@types/react": "18.2.20",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "29.6.3",
"css-loader": "6.8.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react": "7.33.2",
"eslint-webpack-plugin": "4.0.1",
"eslint": "8.47.0",
"jest-css-modules-transform": "4.4.2",
"jest-environment-jsdom": "29.5.0",
"jest": "29.6.3",
"mini-css-extract-plugin": "2.7.6",
"node-sass": "9.0.0",
"sass-loader": "13.3.2",
"style-loader": "3.3.3",
"ts-jest": "29.1.1",
"ts-loader": "9.4.4",
"typescript": "5.1.6",
"webpack-bundle-analyzer": "4.9.0",
"webpack-cli": "5.1.4",
"webpack": "5.88.2"
}
}