-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.96 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
{
"name": "BulletNotes.io",
"version": "0.4.27",
"releaseDate": "2018-01-22",
"private": true,
"scripts": {
"start": "METEOR_PACKAGE_DIRS=$HOME/Code meteor -p 3000 --settings settings.private.json --mobile-server=http://192.168.1.124:3000",
"bunvis": "meteor --extra-packages bundle-visualizer --production -p 3000 --settings settings.private.json",
"pretest": "meteor reset",
"test": "meteor test --once --driver-package dispatch:mocha-phantomjs --port 3333 --settings settings.json",
"test-app": "meteor test --full-app --once --driver-package dispatch:mocha-phantomjs",
"test-watch": "meteor test --driver-package practicalmeteor:mocha",
"test-app-watch": "meteor test --full-app --driver-package practicalmeteor:mocha",
"test-watch-terminal": "TEST_WATCH=1 meteor test --driver-package dispatch:mocha-phantomjs",
"test-app-watch-terminal": "TEST_WATCH=1 meteor test --full-app --driver-package dispatch:mocha-phantomjs",
"lint": "coffeelint imports/",
"desktop": "meteor-desktop"
},
"dependencies": {
"@babel/runtime": "^7.1.2",
"autoprefixer": "^6.4.1",
"aws-sdk": "^2.167.0",
"babel-runtime": "^6.18.0",
"body-parser": "^1.17.1",
"core-js": "^2.5.1",
"dropbox": "^2.5.13",
"extend": "^3.0.1",
"faker": "^3.0.1",
"filesize": "^3.5.11",
"fs-extra": "^4.0.3",
"getmdl-select": "^1.1.0",
"gm": "^1.23.1",
"intro.js": "^2.8.0-alpha.1",
"leaflet": "^1.2.0",
"meteor-node-stubs": "^0.2.5",
"node-localstorage": "^1.3.1",
"request": "^2.88.0",
"sanitize-html": "^1.20.1",
"simpl-schema": "^0.1.1",
"simplemde": "^1.11.2",
"stripe": "^5.10.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-import-resolver-meteor": "^0.3.3",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-meteor": "^4.0.0",
"eslint-plugin-react": "^6.2.2",
"meteor-desktop": "^0.6.2",
"shell-source": "^1.1.0",
"shelljs": "^0.7.4"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"plugins": [
"meteor"
],
"extends": [
"airbnb",
"plugin:meteor/recommended"
],
"rules": {
"import/no-extraneous-dependencies": "off",
"import/prefer-default-export": "off",
"no-underscore-dangle": "off",
"object-shorthand": [
"error",
"always",
{
"avoidQuotes": false
}
],
"meteor/eventmap-params": [
"error",
{
"eventParamName": "event",
"templateInstanceParamName": "instance"
}
],
"meteor/template-names": [
"off"
]
},
"settings": {
"import/resolver": "meteor"
}
},
"postcss": {
"plugins": {
"autoprefixer": {
"browsers": [
"last 2 versions"
]
}
}
}
}