-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 899 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 899 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
{
"name": "simple-todos",
"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.9.2",
"bcrypt": "^4.0.1",
"echarts": "^4.7.0",
"jquery": "^3.4.1",
"meteor-node-stubs": "^1.0.0",
"reify": "^0.20.12",
"simpl-schema": "^1.5.7",
"vue": "^2.6.11",
"vue-flatpickr-component": "^8.1.5",
"vue-meteor-tracker": "^2.0.0-beta.5",
"vue-router": "^3.1.6",
"vuetify": "^2.2.20",
"vuetify-datetime-picker": "^2.1.1"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js"
}
}