-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
58 lines (58 loc) · 1.32 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
{
"scripts": {
"dev": ". ./config/development/env.sh && meteor --settings ./config/development/settings.json -p $MPORT",
"pretest": "npm run lint --silent",
"tests": "meteor test --driver-package practicalmeteor:mocha",
"test-app-watch": "meteor test --full-app --driver-package practicalmeteor:mocha",
"lint": "eslint .",
"production": "meteor --settings settings-production.json"
},
"dependencies": {
"autoprefixer": "^6.3.1",
"babel-runtime": "^6.18.0",
"bcrypt": "^0.8.7",
"faker": "^3.0.1",
"lodash": "4.12.0",
"moment": "2.13.0"
},
"devDependencies": {
"eslint": "^2.3.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-meteor": "^3.0.1",
"eslint-plugin-react": "^4.0.0"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"meteor"
],
"extends": [
"airbnb/base",
"plugin:meteor/recommended"
],
"rules": {
"meteor/eventmap-params": [
2,
{
"eventParamName": "event",
"templateInstanceParamName": "instance"
}
],
"meteor/template-names": [
0
]
}
},
"postcss": {
"plugins": {
"autoprefixer": {
"browsers": [
"last 2 versions"
]
}
}
}
}