-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
79 lines (79 loc) · 2.49 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
{
"name": "comingle",
"repository": {
"type": "git",
"url": "https://github.com/edemaine/comingle.git"
},
"author": {
"name": "Erik Demaine",
"email": "[email protected]",
"url": "https://erikdemaine.org/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/edemaine/comingle/issues"
},
"homepage": "https://github.com/edemaine/comingle#comingle",
"changelog": "https://github.com/edemaine/comingle/blob/main/CHANGELOG.md",
"scripts": {
"start": "meteor run",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"doc:lint": "markdownlint **/*.md --ignore node_modules --rules markdownlint-rule-github-internal-links",
"eslint": "eslint --ext .coffee .",
"lint": "npm run eslint && npm run doc:lint",
"test": "npm run lint",
"upgrade-web-zoom": "coffee tools/upgrade-web-zoom.coffee"
},
"dependencies": {
"@babel/runtime": "7.17.0",
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/free-regular-svg-icons": "5.15.4",
"@fortawesome/free-solid-svg-icons": "5.15.4",
"@fortawesome/react-fontawesome": "0.1.17",
"@use-it/event-listener": "0.1.7",
"@use-it/interval": "1.0.0",
"body-parser": "1.19.1",
"bootstrap": "4.6.0",
"flexlayout-react": "0.5.12",
"jsrsasign": "^10.8.3",
"katex": "0.16.11",
"markdown-it": "12.3.2",
"markdown-it-texmath": "0.9.7",
"meteor-node-stubs": "1.1.0",
"pug": "3.0.3",
"react": "17.0.2",
"react-bootstrap": "1.6.0",
"react-dnd": "15.1.0",
"react-dnd-html5-backend": "15.1.1",
"react-dom": "17.0.2",
"react-router-dom": "5.2.0",
"react-script-hook": "1.6.0",
"react-scrollable-feed": "1.3.1",
"ua-parser-js": "1.0.34"
},
"meteor": {
"mainModule": {
"client": "client/main.coffee",
"server": "server/main.coffee"
},
"nodeModules": {
"recompile": {
"flexlayout-react": true
}
}
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-import-resolver-meteor": "0.4.0",
"eslint-plugin-coffee": "github:helixbass/eslint-plugin-coffee#eslint-plugin-coffee-v0.1.16-dev.4-gitpkg",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-meteor": "7.3.0",
"eslint-plugin-react": "7.28.0",
"isomorphic-fetch": "3.0.0",
"markdownlint-cli": "0.41.0",
"markdownlint-rule-github-internal-links": "0.1.0"
}
}