-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
116 lines (116 loc) · 3.51 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
{
"name": "@markboard/markboard",
"engines": {
"node": "14.21.2"
},
"scripts": {
"local": "export MONGO_URL= && meteor run",
"start": "node scripts/dev.js",
"debug": "export $(cat .env | xargs) && meteor run --inspect",
"debug:brk": "export $(cat .env | xargs) && meteor --inspect-brk",
"dev": "node scripts/dev.js",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"lint": "meteor npx eslint server client imports",
"test": "meteor npx jest --silent",
"postinstall": "meteor node scripts/postinstall.js",
"build": "node scripts/build.js"
},
"dependencies": {
"@babel/runtime": "^7.17.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/chai": "^4.3.4",
"@types/fabric": "^4.5.14",
"@types/global-agent": "^2.1.1",
"@types/jest": "^29.2.4",
"@types/lodash.throttle": "^4.1.7",
"@types/pako": "^2.0.0",
"@types/pica": "^9.0.1",
"@types/socket.io": "^2.1.13",
"@welldone-software/why-did-you-render": "^7.0.1",
"bootstrap": "^5.2.3",
"browser-fs-access": "^0.29.1",
"chai": "^4.3.7",
"clsx": "^1.2.1",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"firebase": "^8.3.3",
"global-agent": "^3.0.0",
"i18next-browser-languagedetector": "^7.0.1",
"idb-keyval": "^6.2.0",
"image-blob-reduce": "^4.1.0",
"jest": "^29.3.1",
"jotai": "^1.12.0",
"lodash": "^4.17.21",
"lodash.throttle": "^4.1.1",
"meteor-node-stubs": "^1.2.1",
"nanoid": "^4.0.0",
"open-color": "^1.9.1",
"pako": "^2.1.0",
"perfect-freehand": "^1.2.0",
"pica": "^9.0.1",
"png-chunk-text": "^1.0.0",
"png-chunks-encode": "^1.0.0",
"png-chunks-extract": "^1.0.0",
"react": "^18.2.0",
"react-bootstrap": "^2.7.0",
"react-dom": "^18.2.0",
"react-resizable-panels": "0.0.28",
"react-router-dom": "^6.6.1",
"react-toastify": "^9.1.1",
"roughjs": "^4.5.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.1",
"ts-jest": "^29.0.3",
"zustand": "^4.3.3"
},
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"@types/meteor": "^2.8.1",
"@types/mocha": "^8.2.3",
"@types/react": "^17.0.43",
"@types/react-dom": "^18.0.10",
"@types/socket.io-client": "^1.4.36",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"babel-eslint": "^10.1.0",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-meteor": "^7.3.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"fake-indexeddb": "^4.0.1",
"identity-obj-proxy": "^3.0.0",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.3.1",
"pepjs": "^0.5.3",
"postcss": "^8.4.21",
"postcss-easy-import": "^4.0.0",
"postcss-load-config": "^4.0.1",
"postcss-modules": "^6.0.0",
"react-scripts": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.6.4"
},
"meteor": {
"mainModule": {
"client": "client/main.tsx",
"server": "server/main.ts"
},
"testModule": "tests/main.ts"
},
"cssModules": {
"extensions": [
"module.scss"
],
"enableSassCompilation": [
"scss",
"sass"
]
}
}