-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
118 lines (118 loc) · 3.54 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "examma-ray",
"version": "1.0.351",
"description": "## Setup",
"main": "dist/core.js",
"types": "dist/core.d.ts",
"files": [
"dist",
"template",
"sample"
],
"scripts": {
"build": "tsc",
"build-frontend": "webpack --config webpack.config.js",
"copy-frontend-css": "cp frontend/*.css dist/frontend/",
"prepublish": "rm -rf dist && npm run build && npm run build-frontend && npm run copy-frontend-css",
"test": "TS_NODE_FILES=true mocha --recursive -r ts-node/register 'test/**/*.spec.ts'",
"cypress:open": "CYPRESS_CRASH_REPORTS=0 cypress open",
"cypress:run": "CYPRESS_CRASH_REPORTS=0 cypress run --headless --browser chrome",
"gen-test-exams": "ts-node --files test/test-exams/gen.ts",
"serve-test-exams": "serve test/test-exams/out/",
"docs": "typedoc --options typedoc.config.json"
},
"bin": {
"examma-ray-init": "dist/bin/init.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamesjuett/examma-ray.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesjuett/examma-ray/issues"
},
"homepage": "https://github.com/jamesjuett/examma-ray#readme",
"dependencies": {
"@types/deep-equal": "^1.0.1",
"@types/katex": "^0.11.0",
"@types/minimist": "^1.2.2",
"@types/node": "^14.17.9",
"@types/shuffle-seed": "^1.1.0",
"blob-polyfill": "^5.0.20210201",
"chart.js": "^2.9.4",
"chroma-js": "^2.1.0",
"codemirror": "^5.60.0",
"colors": "^1.4.0",
"deep-equal": "^2.0.5",
"del": "^6.0.0",
"glob": "^7.1.6",
"handlebars": "^4.7.7",
"he": "^1.2.0",
"indent-string": "^4.0.0",
"json-stable-stringify": "^1.0.1",
"just-diff": "^5.1.1",
"katex": "^0.11.1",
"minimist": "^1.2.5",
"ncp": "^2.0.0",
"node-chartist": "^1.0.5",
"papaparse": "^5.3.0",
"random-seed": "^0.3.0",
"showdown": "^1.9.1",
"showdown-highlight": "2.1.6",
"showdown-katex": "^0.8.0",
"shuffle-seed": "^1.1.6",
"simple-statistics": "^7.4.0",
"sortablejs": "^1.14.0",
"storage-available": "^1.1.0",
"typescript": "^4.4.3",
"unique-names-generator": "^4.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bootstrap": "^5.0.9",
"@types/chai": "^4.2.15",
"@types/chai-subset": "^1.3.3",
"@types/chart.js": "^2.9.29",
"@types/chroma-js": "^2.1.2",
"@types/codemirror": "^0.0.108",
"@types/colors": "^1.2.1",
"@types/glob": "^7.1.3",
"@types/he": "^1.1.1",
"@types/javascript-time-ago": "^2.0.2",
"@types/jquery": "^3.5.5",
"@types/jsdom": "^16.2.13",
"@types/jsdom-global": "^3.0.2",
"@types/json-stable-stringify": "^1.0.32",
"@types/mocha": "^8.2.2",
"@types/ncp": "^2.0.5",
"@types/papaparse": "^5.2.5",
"@types/plotly.js": "^1.54.10",
"@types/random-seed": "^0.3.3",
"@types/showdown": "^1.9.3",
"@types/sortablejs": "^1.10.7",
"@types/uuid": "^8.3.0",
"@types/wicg-file-system-access": "^2020.9.1",
"chai": "^4.3.4",
"chai-subset": "^1.6.0",
"css-loader": "^5.1.3",
"cypress": "^9.5.1",
"cypress-file-upload": "^5.0.8",
"cypress-localstorage-commands": "^1.7.0",
"file-loader": "^6.2.0",
"jquery": "^3.6.0",
"jsdom": "^16.7.0",
"mocha": "^8.3.2",
"serve": "^12.0.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.0.18",
"ts-node": "^9.1.1",
"typedoc": "^0.22.12",
"webpack": "^5.26.3",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0"
}
}