forked from hedyorg/hedy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.97 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
71
72
73
74
{
"name": "hedy",
"private": true,
"version": "0.0.1",
"description": "This file exists to bring in NPM dependencies and orchestrate deploy-time build commands.",
"repository": {
"type": "git",
"url": "git+https://github.com/hedyorg/hedy.git"
},
"scripts": {
"build": "doit run deploy",
"cypress-gui": "cd tests && cypress open",
"cypress": "cd tests && cypress run --spec \"cypress/e2e/**/*\""
},
"devDependencies": {
"@cypress/code-coverage": "^3.10.0",
"@types/ace": "^0.0.47",
"@types/jquery": "^3.5.6",
"@types/sortablejs": "^1.15.1",
"cypress": "^13.1.0",
"esbuild": "^0.13.15",
"jqueryui": "^1.11.1",
"minify": "^7.0.1",
"nyc": "^15.1.0",
"tailwindcss": "^3.0.13",
"typescript": "^5.0.0",
"yaml": "2.2.2"
},
"license": "ISC",
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^41.0.0",
"@ckeditor/ckeditor5-code-block": "^41.0.0",
"@codemirror/commands": "^6.2.5",
"@codemirror/state": "^6.4.0",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.22.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@lezer/generator": "^1.5.1",
"@lezer/highlight": "^1.1.6",
"@lezer/lr": "^1.3.13",
"@types/dompurify": "^2.3.3",
"@types/jqueryui": "^1.12.16",
"autoprefixer": "^10.4.2",
"chai-colors": "^1.0.1",
"chart.js": "^4.4.2",
"codemirror": "^6.0.1",
"cypress-real-events": "^1.12.0",
"dompurify": "^2.3.5",
"istanbul-lib-coverage": "^3.2.0",
"jquery-ui-dist": "^1.13.1",
"jszip": "^3.10.1",
"postcss": "^8.4.31",
"sortablejs": "^1.15.0",
"source-map-support": "^0.5.21",
"tone": "^14.7.77",
"ts-node": "^10.9.1",
"tw-elements": "^1.0.0"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"report-dir": "cypress-coverage",
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
]
}
}