-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
125 lines (125 loc) · 3.19 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
116
117
118
119
120
121
122
123
124
125
{
"name": "foodcoop.nz",
"version": "0.2.0",
"description": "platform for online food selling",
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {
"@babel/runtime": "7.0.0-beta.55",
"angular": "^1.5.11",
"angular-animate": "1.5.11",
"angular-aria": "1.5.11",
"angular-google-maps": "^2.3.4",
"angular-material": "^1.1.20",
"angular-messages": "1.5.11",
"angular-meteor": "^1.3.12",
"angular-sanitize": "1.5.11",
"angular-simple-logger": "^0.1.7",
"angular-ui-router": "^0.2.18",
"babel-runtime": "^6.26.0",
"bcrypt": "^0.8.7",
"body-parser": "^1.19.0",
"braintree": "^2.11.0",
"cloudinary-angular": "^1.0.1",
"index": "^0.4.0",
"index.js": "0.0.3",
"lodash": "^4.17.15",
"lodash.includes": "^4.3.0",
"meteor-node-stubs": "^0.4.1",
"moment-timezone": "^0.5.27",
"ng-file-upload": "^12.0.4",
"remarkable": "^1.7.4"
},
"peerDependencies": {
"angular": ">=1.3 <1.6",
"angular-animate": ">=1.3 <1.6",
"angular-aria": ">=1.3 <1.6",
"angular-messages": ">=1.3 <1.6",
"angular-mocks": ">=1.3 <1.6",
"angular-route": ">=1.3 <1.6",
"angular-sanitize": ">=1.3 <1.6"
},
"devDependencies": {
"acorn": "^6.0.5",
"angular-mocks": "1.5.11",
"babel-eslint": "^7.2.3",
"babel-plugin-angularjs-annotate": "^0.8.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-meteor": "^7.7.4",
"chai-spies": "^0.7.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-import-resolver-meteor": "^0.3.4",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-meteor": "^4.2.2",
"eslint-plugin-react": "^6.10.3",
"faker": "^3.1.0"
},
"babel": {
"plugins": [
"angularjs-annotate"
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint --silent",
"test:watch": "meteor test --driver-package practicalmeteor:mocha --port 4000 --settings wh-settings.json",
"start": "meteor run --settings wh-settings.json"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"env": {
"browser": true,
"node": true
},
"plugins": [
"meteor"
],
"extends": [
"airbnb/base",
"plugin:meteor/guide"
],
"settings": {
"import/resolver": "meteor"
},
"rules": {
"class-methods-use-this": 0,
"import/no-extraneous-dependencies": 0,
"import/extensions": 0,
"no-plusplus": 0,
"no-underscore-dangle": [
"error",
{
"allow": [
"_id"
]
}
],
"no-param-reassign": [
"error",
{
"props": false
}
],
"no-unused-expressions": 0,
"no-console": 0
}
},
"repository": "git+https://github.com/redhead-web/meteor-foodcoop.git",
"keywords": [
"food-coop"
],
"author": "sean stanley",
"license": "MIT",
"bugs": {
"url": "https://github.com/redhead-web/meteor-foodcoop/issues"
},
"homepage": "https://github.com/redhead-web/meteor-foodcoop#readme"
}