-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.87 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
{
"name": "LernApp",
"private": true,
"scripts": {
"start": "meteor run --exclude-archs web.browser.legacy",
"test": "meteor test --once --port 3003 --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/runtime": "^7.14.5",
"@types/react-router-dom": "^5.1.7",
"ace-builds": "^1.4.12",
"bcrypt": "^5.0.1",
"classnames": "^2.3.1",
"invariant": "^2.2.4",
"katex": "^0.13.11",
"lodash": "^4.17.21",
"markdown-it": "^12.0.6",
"markdown-it-abbr": "^1.0.4",
"markdown-it-anchor": "^7.1.0",
"markdown-it-custom-block": "^0.1.2",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-ins": "^3.0.1",
"markdown-it-katex": "^2.0.3",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-toc-done-right": "^4.2.0",
"meteor-node-stubs": "^1.0.1",
"react": "^16.14.0",
"react-ace": "^9.4.1",
"react-dom": "^16.14.0",
"react-router-dom": "^5.2.0",
"react-use": "^17.2.4",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.3",
"simpl-schema": "^1.12.0",
"uniforms": "^3.5.1",
"uniforms-bridge-simple-schema-2": "^3.5.1"
},
"devDependencies": {
"@types/markdown-it": "^12.0.2",
"@types/markdown-it-emoji": "^2.0.1",
"@types/meteor": "^1.4.49",
"@types/mocha": "^8.0.3",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/simpl-schema": "^1.10.4",
"chai": "^4.3.4",
"typescript": "^4.2.2"
},
"meteor": {
"mainModule": {
"client": "client/main.tsx",
"server": "server/main.ts"
},
"testModule": "tests/main.ts"
}
}