-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
94 lines (94 loc) · 3.6 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
{
"name": "@aws/mynah-ui",
"displayName": "AWS Mynah UI",
"version": "4.21.3",
"description": "AWS Toolkit VSCode and Intellij IDE Extension Mynah UI",
"publisher": "Amazon Web Services",
"license": "Apache License 2.0",
"readme": "README.md",
"main": "./dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/aws/mynah-ui"
},
"scripts": {
"clean": "npm run clean:dist && npm run clean:node",
"clean:dist": "find . -name 'dist' -type d -prune -exec rm -rf '{}' +",
"clean:node": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"build": "webpack --config webpack.config.js --mode production",
"packdemo": "cd ./example && npm run pack",
"watch": "webpack --config webpack.config.js --mode development --watch",
"watch:example": "cd ./example && npm run watch",
"watch:web": "run-p watch watch:example serve:example",
"serve:example": "live-server --port=9000 example/dist",
"start:example": "cd ./example && npm install && npm run build && cd .. && npm run watch:web",
"dev": "npm ci && npm run build && cd ./ui-tests && npm install && cd .. && npm run start:example",
"lint-fix": "npx eslint \"./**\" --fix",
"lint": "npx eslint \"./**\"",
"format:check": "npx prettier --check .",
"format:write": "npx prettier --write .",
"tests:unit": "jest",
"tests:e2e": "cd ./ui-tests && npm install && npm run prepare && npm run e2e",
"api-docs": "npx typedoc src/main.ts --out ./api-docs",
"api-doc-deploy": "npx typedoc src/main.ts --out ./example/dist/api-doc",
"postinstall": "node postinstall.js",
"prepare": "npx husky"
},
"dependencies": {
"escape-html": "^1.0.3",
"highlight.js": "^11.11.0",
"just-clone": "^6.2.0",
"marked": "^14.1.0",
"sanitize-html": "^2.12.1",
"unescape-html": "^1.1.0"
},
"peerDependencies": {
"escape-html": "^1.0.3",
"highlight.js": "^11.11.0",
"just-clone": "^6.2.0",
"marked": "^14.1.0",
"sanitize-html": "^2.12.1",
"unescape-html": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@types/eslint": "^8.44.3",
"@types/eslint-scope": "3.7.0",
"@types/estree": "0.0.49",
"@types/glob": "7.1.3",
"@types/jest": "^29.5.5",
"@types/json-schema": "7.0.7",
"@types/node": "17.0.29",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-jest": "^29.7.0",
"core-js": "^3.33.3",
"css-loader": "6.6.0",
"eslint": "^8.22.0",
"eslint-config-standard-with-typescript": "22.0.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.2.5",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "6.0.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-svg-transformer": "^1.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"sass": "1.49.8",
"sass-loader": "12.6.0",
"style-loader": "3.3.1",
"svg-url-loader": "^8.0.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typedoc": "^0.25.13",
"typescript": "^5.0.4",
"webpack": "5.94.0",
"webpack-cli": "4.7.2"
}
}