forked from Milkdown/milkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.78 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
68
69
70
{
"name": "@milkdown/e2e",
"version": "7.2.3",
"private": true,
"files": [
"style"
],
"scripts": {
"start": "vite",
"build": "vite build",
"serve": "vite preview",
"setup": "pnpm serve --port $CYPRESS_SERVER_PORT --host",
"test": "cypress run",
"test:verbose": "cypress open",
"start:test": "cross-env CYPRESS_SERVER_PORT=8000 start-test setup :8000 test",
"start:test:verbose": "cross-env CYPRESS_SERVER_PORT=8000 start-test setup :8000 test:verbose"
},
"dependencies": {
"@milkdown/core": "workspace:*",
"@milkdown/ctx": "workspace:*",
"@milkdown/plugin-clipboard": "workspace:*",
"@milkdown/plugin-history": "workspace:*",
"@milkdown/plugin-listener": "workspace:*",
"@milkdown/plugin-math": "workspace:*",
"@milkdown/preset-commonmark": "workspace:*",
"@milkdown/preset-gfm": "workspace:*",
"@milkdown/prose": "workspace:*",
"@milkdown/theme-nord": "workspace:*",
"katex": "^0.16.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"cypress": "^12.10.0",
"start-server-and-test": "^2.0.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"
}
]
}
}
}
}