forked from edemaine/cocreate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.96 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
{
"name": "cocreate",
"version": "0.0.0",
"description": "Cocreate Shared Whiteboard/Drawing",
"repository": {
"type": "git",
"url": "git+https://github.com/edemaine/cocreate.git"
},
"author": {
"name": "Erik Demaine",
"email": "edemaine@mit.edu",
"url": "http://erikdemaine.org/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/edemaine/cocreate/issues"
},
"homepage": "https://github.com/edemaine/cocreate",
"documentation": "https://github.com/edemaine/cocreate/blob/master/doc/README.md",
"scripts": {
"doc:icons": "coffee --transpile doc/icons/make.coffee",
"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",
"prepare": "cp node_modules/tex2svg-webworker/dist/tex2svg.js public/",
"start": "meteor run",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/preset-react": "^7.12.13",
"@babel/runtime": "^7.11.2",
"debounce": "^1.2.0",
"meteor-node-stubs": "^1.0.1",
"pepjs": "^0.5.2",
"pug": "^3.0.0",
"qrcode-svg": "^1.1.0",
"react": "^17.0.1",
"react-bootstrap": "^1.4.3",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"tex2svg-webworker": "^0.1.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@fellow/eslint-plugin-coffee": "^0.4.13",
"coffeescript": "^2.5.1",
"eslint": "^7.17.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-coffeescript": "^1.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-meteor": "^7.2.2",
"eslint-plugin-react": "^7.22.0",
"markdownlint-cli": "^0.23.2",
"markdownlint-rule-github-internal-links": "^0.0.1"
},
"meteor": {
"mainModule": {
"client": "client/main.coffee",
"server": "server/main.coffee"
}
}
}