-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
115 lines (115 loc) · 3.51 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
{
"name": "demomonkey",
"license": "Apache-2.0",
"author": "Severin Neumann <[email protected]>",
"homepage": "https://github.com/Appdynamics/demomonkey/",
"repository": {
"type": "git",
"url": "https://github.com/Appdynamics/demomonkey.git"
},
"scripts": {
"test": "mocha",
"test-no-ui": "mocha --exclude='*/selenium/*.js'",
"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": {
"webext-redux": "^4.0.0",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.1.8",
"@mui/lab": "^6.0.0-beta.16",
"@mui/material": "^6.1.8",
"@mui/x-tree-view": "^7.22.1",
"ace-builds": "^1.36.5",
"axios": "^1.7.7",
"chance": "^1.1.12",
"change-case": "^4.1.2",
"color": "^4.1.0",
"color-name": "^2.0.0",
"color-string": "^1.9.0",
"crypto-js": "^4.2.0",
"deep-is": "^0.1.4",
"deepmerge": "^4.3.1",
"fast-json-patch": "^3.1.0",
"fast-xml-parser": "^4.5.0",
"highlight.js": "^11.10.0",
"ini": "^5.0.0",
"js-base64": "^3.7.7",
"json5": "^2.2.3",
"jszip": "^3.10.1",
"lodash.omit": "^4.5.0",
"marked": "^15.0.2",
"moment": "^2.29.1",
"mousetrap": "^1.6.5",
"prettier": "^3.3.3",
"prop-types": "^15.8.0",
"react": "^18.3.1",
"react-ace": "^13.0.0",
"react-dom": "^18.3.1",
"react-redux": "^8.1.3",
"redux": "^4.2.1",
"sharp": "^0.33.5",
"uuid": "^11.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.16.7",
"@babel/plugin-transform-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/register": "^7.24.6",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"babel-loader": "^9.2.1",
"chai": "^4.5.0",
"chromedriver": "^131.0.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.36.1",
"git-revision-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "5.6.3",
"husky": "^9.1.7",
"less": "^4.1.2",
"less-loader": "^12.2.0",
"lint-staged": "^15.2.10",
"markdownlint": "^0.36.1",
"markdownlint-cli": "^0.42.0",
"mini-css-extract-plugin": "^2.9.2",
"mocha": "^10.7.3",
"postcss": "^8.4.49",
"raw-loader": "^4.0.2",
"responsive-loader": "^3.1.1",
"selenium-webdriver": "^4.25.0",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"zip-webpack-plugin": "^4.0.2"
},
"mocha": {
"recursive": true,
"require": [
"@babel/register"
]
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.less": "stylelint --cache --fix",
"*.md": "npx markdownlint-cli --fix --config .markdownlint.jsonc"
},
"version": "10.0.0"
}