-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 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
{
"name": "rpg-grid-map",
"private": true,
"version": "0.1.3",
"scripts": {
"build": "vite build",
"build:watch": "npm run build -- --watch",
"serve:dev": "vite --mode development",
"serve:build": "vite preview",
"cy:run": "cypress run --e2e --headless",
"cy:open": "cypress open --e2e",
"test:e2e": "concurrently \"npm:build -- --mode test\" \"npm:cy:run\"",
"test:e2e:open": "concurrently --kill-others \"npm:build:watch -- --mode test\" \"npm:cy:open\"",
"test:unit": "vitest",
"test:unit:watch": "vitest --watch --ui"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "^16.0.3",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.0",
"@vitest/ui": "^0.31.0",
"concurrently": "^7.1.0",
"cypress": "^12.11.0",
"heimdall-visual-test": "^0.0.1",
"jsdom": "^21.1.1",
"vite": "^4.3.2",
"vitest": "^0.31.0"
},
"dependencies": {
"three": "^0.140.2"
},
"cypress-cucumber-preprocessor": {
"stepDefinitions": [
"cypress/support/steps/**/*.{js,ts}"
]
}
}