-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.58 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
{
"name": "deckdle",
"version": "1.0.0",
"description": "Daily solitaire card game.",
"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",
"start": "php -S 127.0.0.1:3000",
"test": "npx cypress run --env host=local",
"test:coverage": "COVERAGE=true 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://deckdle.neb.host' --env host=prod",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"cypress": "^13.17.0",
"cypress-real-events": "^1.13.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"husky": "^9.1.7",
"stylelint": "^16.13.2",
"stylelint-config-recommended": "^14.0.1",
"stylelint-prettier": "^5.0.2"
},
"packageManager": "[email protected]+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca",
"dependencies": {
"commander": "^13.1.0"
}
}