forked from Milkdown/milkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.13 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@milkdown/e2e",
"private": true,
"version": "6.5.1",
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"setup": "pnpm serve --port 7000",
"test": "cypress run",
"test:verbose": "cypress open",
"start:test": "cross-env CYPRESS_SERVER_PORT=7000 start-server-and-test setup http-get://localhost:7000 test",
"e2e": "cross-env CYPRESS_SERVER_PORT=7000 start-server-and-test setup http-get://localhost:7000 test",
"start:test:verbose": "cross-env CYPRESS_SERVER_PORT=7000 start-server-and-test setup http-get://localhost:7000 test:verbose"
},
"files": [
"style"
],
"dependencies": {
"@milkdown/core": "workspace:*",
"@milkdown/design-system": "workspace:*",
"@milkdown/preset-commonmark": "workspace:*",
"@milkdown/preset-gfm": "workspace:*",
"@milkdown/prose": "workspace:*",
"@milkdown/theme-nord": "workspace:*",
"tslib": "^2.4.0"
},
"devDependencies": {
"@cypress/snapshot": "^2.1.7",
"cypress": "^11.0.0",
"start-server-and-test": "^1.13.0"
},
"nx": {
"targets": {
"e2e": {
"executor": "@nrwl/cypress:cypress",
"options": {
"cypressConfig": "e2e/cypress.config.ts",
"devServerTarget": "e2e:start",
"testingType": "e2e"
},
"configurations": {
"production": {
"devServerTarget": "e2e:serve"
}
},
"dependsOn": [
{
"target": "build",
"projects": "dependencies"
}
]
},
"build": {
"outputs": [
"e2e/lib"
],
"dependsOn": [
{
"target": "build",
"projects": "dependencies"
}
]
}
}
}
}