forked from svrnm/DemoMonkey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.44 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": "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",
"test-no-ui": "mocha --exclude='*/selenium/*.js'",
"start": "webpack watch --mode=development",
"build": "webpack",
"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 install"
},
"description": "Tamper your Web UI to demo almost anything",
"dependencies": {
"@eduardoac-skimlinks/webext-redux": "^3.0.1-release-candidate",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.11.11",
"@mui/lab": "^5.0.0-alpha.101",
"@mui/material": "^5.10.15",
"ace-builds": "^1.15.3",
"axios": "^0.27.2",
"chance": "^1.1.8",
"change-case": "^4.1.2",
"color": "^4.1.0",
"color-name": "^1.1.4",
"color-string": "^1.9.0",
"crypto-js": "^4.1.1",
"deep-is": "^0.1.4",
"deepmerge": "^4.2.2",
"fast-json-patch": "^3.1.0",
"fast-xml-parser": "^4.1.3",
"highlight.js": "^11.3.1",
"ini": "^3.0.1",
"js-base64": "^3.7.3",
"json5": "^2.2.3",
"jszip": "^3.10.1",
"lodash.omit": "^4.5.0",
"marked": "^4.1.0",
"moment": "^2.29.1",
"mousetrap": "^1.6.5",
"prettier": "^2.8.4",
"prop-types": "^15.8.0",
"react": "^18.2.0",
"react-ace": "^10.1.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.4",
"redux": "^4.1.2",
"sharp": "^0.31.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.16.7",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"babel-loader": "^9.1.0",
"chai": "^4.3.4",
"chromedriver": "^107.0.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.5.1",
"eslint": "^8.27.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.10",
"git-revision-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "5.5.0",
"husky": "^8.0.1",
"less": "^4.1.2",
"less-loader": "^11.1.0",
"lint-staged": "^13.0.3",
"markdownlint": "^0.26.2",
"markdownlint-cli": "^0.32.1",
"mini-css-extract-plugin": "^2.4.5",
"mocha": "^10.0.0",
"postcss": "^8.4.18",
"raw-loader": "^4.0.2",
"responsive-loader": "^3.1.1",
"selenium-webdriver": "^4.5.0",
"stylelint": "^14.16.1",
"stylelint-config-standard": "^28.0.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"zip-webpack-plugin": "^4.0.1"
},
"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": "9.0.0"
}