-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.29 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
{
"name": "theory-swe",
"private": true,
"scripts": {
"start": "meteor run",
"run:mac": "MONGO_URL=mongodb://localhost:27017/theory-swe meteor --settings ./settings/settings-development.json",
"run:windows": "SET MONGO_URL=mongodb://localhost:27017/theory-swe& meteor --settings ./settings/settings-development.json",
"test": "meteor test --once --full-app --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/core": "^7.20.2",
"@babel/runtime": "^7.20.1",
"@mdi/font": "^7.0.96",
"@vee-validate/rules": "^4.6.7",
"@vueuse/core": "^9.13.0",
"bcrypt": "^5.0.1",
"busboy": "^0.3.1",
"detect-file-type": "^0.2.8",
"firebase-admin": "^9.11.1",
"fs-extra": "^10.0.0",
"helmet": "^4.6.0",
"iso-datestring-validator": "^2.2.0",
"meteor-node-stubs": "^1.2.7",
"mimetypes": "^0.1.1",
"mitt": "^3.0.0",
"pinia": "^2.0.33",
"roboto-fontface": "^0.10.0",
"simpl-schema": "^1.12.0",
"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": {
"@types/busboy": "^0.2.4",
"@types/chai": "^4.2.22",
"@types/faker": "^5.5.8",
"@types/fs-extra": "^9.0.13",
"@types/meteor": "^1.4.70",
"@types/meteor-astronomy": "^2.6.6",
"@types/meteor-mdg-validated-method": "^1.2.3",
"@types/meteor-roles": "^1.2.33",
"@types/mocha": "^8.2.2",
"@types/simpl-schema": "^1.12.0",
"@types/sinon": "^10.0.4",
"@types/webfontloader": "^1.6.35",
"@vitejs/plugin-vue": "^4.0.0",
"babel-plugin-module-resolver": "^5.0.0",
"chai": "^4.3.4",
"faker": "^5.5.3",
"husky": "^7.0.2",
"prettier": "^3.1.0",
"sass": "^1.56.1",
"sinon": "^11.1.2",
"typescript": "^4.8.3",
"vite": "^4.0.5",
"vite-plugin-vuetify": "^1.0.1",
"vue-cli-plugin-vuetify": "^2.5.8"
},
"meteor": {
"mainModule": {
"client": "client/main.ts",
"server": "server/main.ts"
},
"testModule": {
"server": "tests/server/main.ts"
}
}
}