forked from Doenet/DoenetML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.27 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
{
"name": "@doenet/doenetml",
"type": "module",
"description": "Semantic markup for building interactive web activities",
"version": "0.7.0-alpha1",
"license": "AGPL-3.0-or-later",
"homepage": "https://github.com/Doenet/DoenetML#readme",
"private": false,
"repository": "github:Doenet/DoenetML",
"files": [
"/dist"
],
"exports": {
".": {
"import": "./dist/doenetml.js",
"require": "./dist/doenetml.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"compile_grammar": "npx lezer-generator --output src/Parser/doenet.js src/Parser/doenet.grammar",
"test-cypress": "cypress open",
"test-cypress-all": "cypress run -b 'chrome' --config video=false --headless",
"test-cypress-parallel": "cypress-parallel -s test-cypress-all -t 4 -d cypress/e2e",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.11"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.7.0",
"@codemirror/basic-setup": "^0.19.0",
"@codemirror/commands": "^0.19.5",
"@codemirror/gutter": "^0.19.9",
"@codemirror/highlight": "^0.19.6",
"@codemirror/lang-xml": "^0.19.2",
"@codemirror/language": "^0.19.7",
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-regular-svg-icons": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@handsontable/react": "^12.4.0",
"@lezer/common": "^0.15.10",
"@lezer/lr": "^0.15.5",
"@lezer/xml": "^0.15.1",
"axios": "^0.27.2",
"better-react-mathjax": "^2.0.1",
"compromise": "^14.9.0",
"compromise-numbers": "^1.4.0",
"copy-to-clipboard": "^3.3.2",
"crypto-js": "^4.1.1",
"cssesc": "^3.0.0",
"esm-seedrandom": "^3.0.5",
"handsontable": "^12.4.0",
"hi-base32": "^0.5.1",
"hyperformula": "^2.5.0",
"idb-keyval": "^6.2.1",
"json-stringify-deterministic": "^1.0.8",
"lorem-ipsum": "^2.0.8",
"math-expressions": "^2.0.0-alpha64",
"nanoid": "^4.0.0",
"prismjs": "^1.29.0",
"react-copy-to-clipboard": "^5.0.3",
"react-icons": "^4.9.0",
"react-mathquill": "^1.0.3",
"react-measure": "^2.5.2",
"react-router": "^6.11.2",
"react-router-dom": "^6.11.2",
"react-simple-code-editor": "^0.13.0",
"react-visibility-sensor-v2": "^1.0.0",
"recoil": "^0.7.7",
"styled-components": "^5.3.11"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@lezer/generator": "^0.15.2",
"@types/react": "^18.0.37",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0",
"cypress": "^12.13.0",
"cypress-parallel": "^0.13.0",
"cypress-plugin-tab": "^1.0.5",
"cypress-wait-until": "^1.7.2",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"prettier": "^2.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-polyfill-node": "^0.12.0",
"vite": "^4.3.9"
}
}