-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.54 KB
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
{
"name": "soundlister.neb.host",
"version": "1.0.0",
"description": "Node modules for testing SoundLister site.",
"main": "index.html",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "pnpm run --parallel \"/^lint:(js|css)$/\"",
"lint:css": "stylelint \"**/*.css\"",
"lint:css:fix": "stylelint \"**/*.css\" --fix",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"test": "npx cypress run --env host=local",
"test-open": "npx cypress open --e2e -b electron --env host=local",
"test-open-prod": "npx cypress open --e2e -b electron --config baseUrl='https://soundlister.neb.host' --env host=prod",
"test-run": "npx cypress run --env host=local",
"test-run-prod": "npx cypress run --config baseUrl='https://soundlister.neb.host' --env host=prod",
"prepare": "husky"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.4",
"@babel/plugin-proposal-decorators": "^7.28.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"cypress": "^15.2.0",
"cypress-real-events": "^1.15.0",
"eslint": "^9.35.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-vue": "^9.33.0",
"eslint-plugin-yml": "^1.18.0",
"globals": "^15.15.0",
"husky": "^9.1.7",
"stylelint": "^16.24.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-prettier": "^5.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"cypress"
]
}
}