-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.83 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.83 KB
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
{
"name": "theory-swe",
"private": true,
"scripts": {
"start": "MONGO_URL='mongodb://localhost:27017/theory-swe?directConnection=true&serverMonitoringMode=poll&connectTimeoutMS=120000&serverSelectionTimeoutMS=120000' meteor --settings ./settings/settings-development.json",
"start:debug": "MONGO_URL=mongodb://localhost:27017/theory-swe meteor debug --settings ./settings/settings-development.json",
"run:windows": "SET MONGO_URL=mongodb://localhost:27017/theory-swe& meteor --settings ./settings/settings-development.json",
"backfill": "node ./scripts/runBackfill.js",
"seed": "node ./scripts/runSeed.js",
"test": "meteor test --once --full-app --driver-package meteortesting:mocha",
"test:watch": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer"
},
"dependencies": {
"@babel/runtime": "^7.23.5",
"@koa/cors": "^5.0.0",
"@mdi/font": "^7.0.96",
"@swc/helpers": "^0.5.17",
"@vee-validate/rules": "^4.6.7",
"@vueuse/core": "^9.13.0",
"bcrypt": "^5.0.1",
"body-parser": "^2.2.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"express": "^4.21.2",
"faker": "^5.5.3",
"file-type": "^21.1.1",
"firebase-admin": "^9.11.1",
"fs-extra": "^10.0.0",
"handlebars": "^4.7.8",
"helmet": "^4.6.0",
"http-status-codes": "^2.3.0",
"iso-datestring-validator": "^2.2.0",
"meteor-node-stubs": "^1.2.24",
"meteor-user-presence": "^1.0.1",
"meteorjs-decorators": "^1.0.3",
"mimetypes": "^0.1.1",
"mitt": "^3.0.0",
"multer": "^2.0.2",
"pinia": "^2.0.33",
"reflect-metadata": "^0.2.2",
"routing-controllers": "^0.11.3",
"vee-validate": "^4.6.7",
"vue": "^3.2.39",
"vue-meteor-tracker": "^3.0.0-beta.7",
"vue-router": "^4.1.5",
"vuedraggable": "^4.1.0",
"vuetify": "^3.4.6",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@meteorjs/rspack": "^1.0.0",
"@rsdoctor/rspack-plugin": "^1.2.3",
"@rspack/cli": "^1.7.1",
"@rspack/core": "^1.7.1",
"@types/body-parser": "^1.19.6",
"@types/chai": "^4.2.22",
"@types/express": "^5.0.6",
"@types/faker": "^5.5.8",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^8.2.2",
"@types/multer": "^2.0.0",
"@types/node": "^22.13.11",
"@types/sinon": "^10.0.4",
"@types/webfontloader": "^1.6.35",
"chai": "^4.3.4",
"husky": "^7.0.2",
"prettier": "^3.1.0",
"sass": "^1.97.1",
"sass-embedded": "^1.97.1",
"sass-loader": "^16.0.6",
"sinon": "^11.1.2",
"typescript": "^5.8.2",
"vue-loader": "^17.4.2"
},
"meteor": {
"modern": true,
"mainModule": {
"client": "client/main.ts",
"server": "server/main.ts"
},
"testModule": {
"server": "tests/server/main.ts"
}
}
}