-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1019 Bytes
/
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
{
"name": "agama-integration-tests",
"version": "0.0.1",
"description": "Agama integration tests",
"private": true,
"license": "GPLv2",
"scripts": {
"build": "webpack --mode production",
"devel": "webpack --mode development",
"watch": "webpack --mode development --watch",
"eslint": "eslint src/ *.js",
"eslint:fix": "eslint --fix src/ *.js"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.12.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^4.5.0",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-webpack-plugin": "^4.2.0",
"neostandard": "^0.12.0",
"prettier": "^3.4.2",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"bufferutil": "^4.0.8",
"commander": "^12.1.0",
"puppeteer-core": "22.13.0",
"utf-8-validate": "^6.0.4"
}
}