-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.16 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
{
"name": "denali-io",
"private": true,
"scripts": {
"start": "meteor run --settings settings.json",
"test": "meteor test --once --driver-package meteortesting:mocha",
"production": "DEPLOY_HOSTNAME=us-east-1.galaxy-deploy.meteor.com meteor deploy ilovemeteor.com --owner ilovemeteor --settings settings-production.json",
"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.0",
"create-react-class": "^15.6.3",
"meteor-node-stubs": "^1.0.1",
"react": "^16.13.1",
"react-addons-pure-render-mixin": "^15.6.2",
"react-bootstrap": "^1.3.0",
"react-csv": "^2.0.3",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"react-redux": "^7.2.1",
"redux-thunk": "^2.3.0"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
}
},
"packages": {
"mongo": {
"options": {
"tlsAllowInvalidCertificates": true
}
}
}
}