-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.11 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": "phrase-example-sut",
"version": "1.0.0",
"description": "An example application tested with Documenté and Phrasé",
"repository": {
"type": "git",
"url": "git+https://github.com/documente/example-sut.git"
},
"author": "pckerneis <[email protected]>",
"license": "LGPL-3.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "concurrently \"cd packages/client && npm start\" \"cd packages/server && node server.js\"",
"documente:cypress": "documente -c documente-cypress.config.yml",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"documente:playwright": "documente -c documente-playwright.config.yml",
"playwright:open": "playwright test --ui",
"playwright:run": "playwright test"
},
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/node": "^20.10.4",
"concurrently": "^8.2.2",
"cypress": "^13.5.0"
},
"dependencies": {
"@documente/generator": "^1.0.0-beta.0",
"@documente/runner-cypress": "^1.0.0-beta.1",
"@documente/runner-playwright": "^1.0.0-beta.1"
}
}