-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 992 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 992 Bytes
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
{
"name": "clock",
"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.29.2",
"axios": "^0.26.1",
"bcrypt": "^5.1.1",
"googletrans": "^1.0.28",
"httpreq": "^0.4.24",
"jquery": "^3.7.1",
"leaflet": "^1.9.4",
"meteor-node-stubs": "^1.2.27",
"node-fetch": "^2.7.0",
"pg": "^8.20.0",
"phraseit": "^1.0.2",
"rss": "^1.2.2",
"tmi.js": "^1.8.5"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-meteor": "^0.1.1",
"eslint-plugin-meteor": "^7.3.0",
"globals": "^17.4.0"
}
}