-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 868 Bytes
/
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
{
"name": "computer-vision-demo",
"private": true,
"scripts": {
"start": "meteor run",
"test": "meteor test --once --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.11.2",
"@material-ui/core": "^4.11.3",
"body-parser": "^1.19.0",
"formidable": "^1.2.2",
"lodash": "^4.17.21",
"meteor-node-stubs": "^1.0.1",
"mime": "^2.5.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sharp": "^0.27.2",
"simpl-schema": "^1.10.2"
},
"engines": {
"node": "12"
},
"meteor": {
"mainModule": {
"client": "client/main.jsx",
"server": "server/main.js"
},
"testModule": "tests/main.js"
}
}