forked from hedyorg/hedy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.52 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
{
"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": "build-tools/heroku/on-deploy.sh",
"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",
"pajv": "^1.2.0",
"tailwindcss": "^3.0.13",
"typescript": "^4.4.3",
"yaml": "2.2.2"
},
"license": "ISC",
"dependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/dompurify": "^2.3.3",
"@types/jqueryui": "^1.12.16",
"autoprefixer": "^10.4.2",
"chart.js": "^3.6.2",
"dompurify": "^2.3.5",
"istanbul-lib-coverage": "^3.2.0",
"jquery-ui-dist": "^1.13.1",
"jszip": "^3.10.1",
"postcss": "^8.4.5",
"sortablejs": "^1.15.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"report-dir": "cypress-coverage",
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
]
}
}