-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.64 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
46
47
48
49
50
51
{
"name": "impossible-clock",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"serve:test": "NODE_ENV=test vite --mode test",
"cy:run": "cypress run",
"cy:run:no-visual": "cypress run --spec 'cypress/e2e/!(visual-regression).cy.js'",
"cy:open": "cypress open",
"test": "start-server-and-test 'npm run serve:test' http://localhost:3000 'npm run cy:run'",
"test:no-visual": "start-server-and-test 'npm run serve:test' http://localhost:3000 'npm run cy:run:no-visual'",
"test:visual": "cypress run --spec='cypress/e2e/visual-regression.cy.js'",
"test:coverage": "NODE_ENV=test nyc npm run test:no-visual",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"generate-baselines": "start-server-and-test 'npm run serve:test' http://localhost:3000 'npm run test:visual'",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"browserslist": [
"> 1%",
"last 2 versions",
"Firefox ESR"
],
"devDependencies": {
"@cypress/code-coverage": "4.0.3",
"@eslint/js": "10.0.1",
"cypress": "15.19.0",
"cypress-image-diff-js": "2.8.0",
"eslint": "10.8.0",
"globals": "17.8.0",
"lightningcss": "1.33.0",
"nyc": "18.0.0",
"prettier": "3.9.6",
"sass": "1.102.0",
"start-server-and-test": "3.0.11",
"vite": "8.1.5",
"vite-plugin-istanbul": "8.0.0",
"vitest": "4.1.10"
}
}