-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
94 lines (94 loc) · 2.73 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
{
"name": "BulletNotes",
"version": "0.4.10",
"releaseDate": "2017-12-02",
"private": true,
"scripts": {
"start": "ROLLBAR_SERVER_ACCESS_TOKEN=d71133c85f83465db6d1c53f347a479a ROLLBAR_CLIENT_ACCESS_TOKEN=9787fb0d1c82430f8d3139a4cf3ae742 ROLLBAR_ENVIRONMENT=local meteor -p 3123 -s settings.private.json",
"pretest": "coffeelint imports/; 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": {
"autoprefixer": "^6.4.1",
"babel-runtime": "^6.18.0",
"body-parser": "^1.17.1",
"core-js": "^2.5.1",
"dropbox": "^2.5.1",
"faker": "^3.0.1",
"getmdl-select": "^1.1.0",
"intro.js": "^2.8.0-alpha.1",
"leaflet": "^1.2.0",
"meteor-node-stubs": "^0.2.5",
"node-localstorage": "^1.3.0",
"sanitize-html": "^1.14.1",
"simpl-schema": "^0.1.1",
"stripe": "^5.3.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"
]
}
}
}
}