-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.85 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 3.85 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
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": "demomonkey",
"license": "Apache-2.0",
"author": "Severin Neumann <severin.neumann@appdynamics.com>",
"homepage": "https://github.com/Appdynamics/demomonkey/",
"repository": {
"type": "git",
"url": "https://github.com/Appdynamics/demomonkey.git"
},
"scripts": {
"test": "mocha --exclude='*/selenium/*.js' --exclude='*/playwright/*.js'",
"test-no-ui": "mocha --exclude='*/selenium/*.js' --exclude='*/playwright/*.js'",
"test:unit": "mocha --exclude='*/selenium/*.js' --exclude='*/playwright/*.js'",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"test:e2e:debug": "npx playwright test --debug",
"test:all": "npm run test:unit && npm run test:e2e",
"lint": "eslint src/ test/",
"lint:fix": "eslint src/ test/ --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"start": "webpack watch --mode=development",
"build": "webpack --mode=development",
"release": "webpack --mode=production --env RELEASE=stable && rm -r ./build-release",
"dev-release": "webpack --mode=production --env RELEASE=dev-channel && rm -r ./build-release",
"prepare": "husky"
},
"description": "Tamper your Web UI to demo almost anything",
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@mui/icons-material": "7.3.9",
"@mui/material": "7.3.9",
"@mui/x-tree-view": "8.27.2",
"ace-builds": "1.43.6",
"chance": "1.1.13",
"change-case": "5.4.4",
"color": "5.0.3",
"color-name": "2.1.0",
"color-string": "2.1.4",
"crypto-js": "4.2.0",
"deepmerge": "4.3.1",
"dompurify": "3.3.3",
"fast-json-patch": "3.1.1",
"highlight.js": "11.11.1",
"ini": "6.0.0",
"json5": "2.2.3",
"jszip": "3.10.1",
"marked": "17.0.4",
"react": "19.2.4",
"react-ace": "14.0.1",
"react-dom": "19.2.4",
"react-redux": "9.2.0",
"redux": "5.0.1",
"webext-redux": "4.0.0"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/eslint-parser": "7.28.6",
"@babel/plugin-transform-class-properties": "7.28.6",
"@babel/plugin-transform-object-rest-spread": "7.28.6",
"@babel/plugin-transform-runtime": "7.29.0",
"@babel/preset-env": "7.29.0",
"@babel/preset-react": "7.28.5",
"@babel/register": "7.28.6",
"@commitlint/cli": "20.4.4",
"@commitlint/config-conventional": "20.4.4",
"@eslint/js": "9.39.2",
"@microsoft/eslint-formatter-sarif": "3.1.0",
"@playwright/test": "1.58.2",
"@tony.ganchev/eslint-plugin-header": "3.3.1",
"babel-loader": "10.1.1",
"chai": "6.2.2",
"copy-webpack-plugin": "14.0.0",
"css-loader": "7.1.4",
"eslint": "9.39.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.5",
"git-revision-webpack-plugin": "5.0.0",
"globals": "16.5.0",
"html-webpack-plugin": "5.6.6",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"markdownlint": "0.40.0",
"markdownlint-cli": "0.48.0",
"mini-css-extract-plugin": "2.10.1",
"mocha": "11.7.5",
"neostandard": "0.12.2",
"postcss": "8.5.8",
"prettier": "3.8.1",
"responsive-loader": "3.1.2",
"sharp": "0.34.5",
"stylelint": "17.4.0",
"stylelint-config-standard": "40.0.0",
"webpack": "5.105.4",
"webpack-cli": "7.0.0",
"zip-webpack-plugin": "4.0.3"
},
"mocha": {
"recursive": true,
"require": [
"@babel/register"
]
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,css}": "prettier --write",
"*.css": "stylelint --cache --fix",
"*.md": "npx markdownlint-cli --fix --config .markdownlint.jsonc"
},
"overrides": {
"mocha": {
"diff": "8.0.3",
"serialize-javascript": "7.0.4"
}
},
"version": "11.1.0"
}