This repository was archived by the owner on Jan 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 769
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.97 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.97 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
{
"name": "@bfemulator/extension-json",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.24.6",
"@bfemulator/app-shared": "^1.0.0",
"@bfemulator/sdk-client": "^1.0.0",
"@bfemulator/sdk-shared": "^1.0.0",
"@bfemulator/ui-react": "^1.0.0",
"botframework-schema": "^4.17.0",
"deep-diff": "^1.0.2",
"eslint-plugin-security": "^1.4.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-json-tree": "^0.17.0"
},
"scripts": {
"start": "webpack-dev-server --hot --mode development --content-base ./public",
"build": "webpack --mode production",
"lint": "eslint --color --quiet --ext .js,.jsx,.ts,.tsx ./src",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-class-properties": "^7.24.6",
"@babel/plugin-proposal-decorators": "^7.24.6",
"@babel/plugin-transform-object-rest-spread": "^7.24.6",
"@babel/plugin-transform-react-jsx": "^7.24.6",
"@babel/plugin-transform-runtime": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@types/deep-diff": "^1.0.0",
"@types/jest": "29.5.12",
"@types/lscache": "^1.0.29",
"@types/react": "16.9.17",
"@types/react-dom": "16.9.4",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"@webpack-cli/serve": "^2.0.5",
"@babel/eslint-parser": "^7.24.6",
"babel-jest": "^29.7.0",
"babel-loader": "^8.0.6",
"babel-preset-react-app": "^10.0.1",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^7.1.1",
"enzyme": "^3.3.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^3.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-notice": "^0.7.7",
"eslint-plugin-prettier": "^3.0.1",
"file-loader": "^6.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"resolve-url-loader": "^5.0.0",
"sass-loader": "^14.2.1",
"typescript": "^4.2.0",
"@teamsupercell/typings-for-css-modules-loader": "^2.5.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"jest": {
"setupFilesAfterEnv": ["../../../../testSetup.js"],
"transform": {
"^.+\\.(tsx?|jsx?)$": "babel-jest",
"^.+\\.(ts?|js?)$": "babel-jest"
},
"testEnvironment": "jsdom",
"testEnvironmentOptions": {
"customExportConditions": ["node"],
"url": "http://localhost"
},
"rootDir": "./src",
"testMatch": [
"**/?(*.)(spec|test).(ts)?(x)"
],
"moduleNameMapper": {
"@electron/remote": "<rootDir>/../../../../jestMocks/electronRemoteMock.js",
".\\.scss$": "<rootDir>/../../../../jestMocks/styleMock.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}