-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.73 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
{
"name": "a11y-root-extension",
"publisher": "a11y-root",
"displayName": "A11y-Root-Extension",
"description": "vscode extension ",
"version": "0.0.1",
"engines": {
"vscode": "^1.95.0"
},
"icon": "assets/a11y-root-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/oslabs-beta/A11y-Root-Webpage"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "dist/extension.js",
"contributes": {
"commands": [
{
"command": "a11y-root-extension.openTab",
"title": "A11y Root"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "concurrently \"webpack --watch --stats-error-details\" \"npx tsc --project tsconfig.json --watch\"",
"package": "webpack --mode production --devtool hidden-source-map --no-watch",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test",
"build:webview": "webpack --config webpack.webview.config.js",
"serve:webview": "webpack serve --config webpack.webview.config.js",
"build:extension": "webpack --config webpack.config.js",
"build": "concurrently \"npm run build:webview\" \"npm run build:extension\""
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@types/cors": "^2.8.17",
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.2",
"@types/sinon": "^17.0.3",
"@types/tcp-port-used": "^1.0.4",
"@types/vscode": "^1.95.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"babel-loader": "^9.2.1",
"bufferutil": "^4.0.8",
"concurrently": "^9.1.0",
"css-loader": "^7.1.2",
"eslint": "^9.13.0",
"html-webpack-plugin": "^5.6.3",
"mocha": "^11.0.1",
"sinon": "^19.0.2",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"utf-8-validate": "^6.0.5",
"webpack": "^5.97.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"@types/mongoose": "^5.11.96",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"get-port": "^7.1.0",
"mongoose": "^8.8.3",
"nanoid": "^5.0.9",
"puppeteer": "^23.9.0",
"puppeteer-core": "^23.10.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tcp-port-used": "^1.0.2"
}
}