-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.42 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "oceco",
"version": "0.0.1",
"description": "oceco",
"private": true,
"scripts": {
"start": "MONGO_URL='mongodb://localhost:5017/pixelhumain' UNIVERSE_I18N_LOCALES=all meteor run --settings settings-test.json --port 3000",
"startPCfixe": "MONGO_URL='mongodb://192.168.1.25:5017/pixelhumain' UNIVERSE_I18N_LOCALES=all meteor run --settings settings-test.json --port 3000",
"deploy": "METEOR_CORDOVA_COMPAT_VERSION_ANDROID=547e3f612c8ec49e89afee6d510441d4315a6259 METEOR_CORDOVA_COMPAT_VERSION_IOS=ab5d143fae19621c5217446c8a712347a9df9c85 mup deploy --config=.deploy/mup.js --settings=.deploy/settings.json",
"build-android": "rm -rf ~/meteor/communecter/build-oceco-no-cross-android/* && cd ~/meteor/communecter/raffinerie/ && ROOT_URL='https://oce.co.tools/' UNIVERSE_I18N_LOCALES=all METEOR_CORDOVA_COMPAT_VERSION_ANDROID=547e3f612c8ec49e89afee6d510441d4315a6259 METEOR_CORDOVA_COMPAT_VERSION_IOS=ab5d143fae19621c5217446c8a712347a9df9c85 meteor build --server=https://oce.co.tools --directory ~/meteor/communecter/build-oceco-no-cross-android/ --mobile-settings ./.deploy/settings.json",
"desktop": "meteor-desktop",
"lint": "eslint imports/",
"pretest": "npm run lint --silent",
"fix": "eslint imports/ --fix"
},
"eslintConfig": {
"extends": "@meteorjs/eslint-config-meteor",
"rules": {
"meteor/eventmap-params": [
2,
{
"eventParamName": "event",
"templateInstanceParamName": "instance"
}
],
"no-underscore-dangle": [
2,
{
"allow": [
"_id",
"_id._str",
"_str",
"__",
"_ensureIndex",
"_collection",
"__helpers"
]
}
],
"radix": [
"error",
"as-needed"
],
"max-len": [
0,
350,
2,
{
"ignoreUrls": true
}
],
"no-param-reassign": [
2,
{
"props": false
}
],
"no-cond-assign": [
2,
"except-parens"
],
"consistent-return": "off",
"no-plusplus": [
"error",
{
"allowForLoopAfterthoughts": true
}
]
}
},
"dependencies": {
"@babel/runtime": "^7.8.7",
"@fullcalendar/core": "^4.3.1",
"@fullcalendar/daygrid": "^4.3.0",
"@fullcalendar/list": "^4.3.0",
"@fullcalendar/timegrid": "^4.3.0",
"autolinker": "^3.0.0",
"bcrypt": "^3.0.4",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"ical-generator": "^1.11.0",
"jquery": "^3.4.1",
"markdown-it": "^10.0.0",
"meteor-node-stubs": "^0.4.1",
"sanitize-html": "^1.22.1",
"simpl-schema": "^1.5.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aboire/co.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aboire/co/issues"
},
"homepage": "https://github.com/aboire/co#readme",
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"babel-eslint": "^7.2.3",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-meteor": "^4.1.0",
"eslint-plugin-react": "^7.19.0"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
}
}
}