forked from themeteorchef/base
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 2.13 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
{
"name": "application-name",
"version": "1.0.0",
"description": "Application description.",
"scripts": {
"start": "meteor --settings settings-development.json",
"test": "meteor test --driver-package practicalmeteor:mocha --port 5000",
"chimp-watch": "chimp --ddp=http://localhost:3000 --watch --mocha --path=tests",
"chimp-test": "chimp --ddp=http://localhost:3000 --mocha --path=tests",
"staging": "meteor deploy staging.meteor.com --settings settings-development.json",
"production": "meteor deploy production.meteor.com --settings settings-production.json"
},
"devDependencies": {
"chimp": "^0.34.1",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-meteor": "^3.5.2",
"eslint-plugin-react": "^5.1.1",
"faker": "^3.1.0"
},
"eslintConfig": {
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"meteor",
"react"
],
"extends": [
"airbnb/base",
"plugin:meteor/guide",
"plugin:react/recommended"
],
"globals": {
"server": false,
"browser": false,
"expect": false
},
"rules": {
"import/no-unresolved": 0,
"no-underscore-dangle": [
"error",
{
"allow": [
"_id",
"_ensureIndex",
"_verifyEmailToken",
"_resetPasswordToken",
"_name"
]
}
]
}
},
"dependencies": {
"antd": "^2.5.3",
"aphrodite": "^1.0.0",
"bcrypt": "^0.8.7",
"eslint": "^2.13.1",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"flexboxgrid": "^6.3.0",
"formsy-antd": "^0.4.1",
"formsy-material-ui": "^0.4.3",
"formsy-react": "^0.18.1",
"indexof": "0.0.1",
"jquery": "^2.2.4",
"jquery-validation": "^1.15.0",
"material-ui": "^0.16.5",
"meteor-node-stubs": "^0.2.4",
"react": "^15.4.1",
"react-addons-pure-render-mixin": "^15.0.2",
"react-dom": "^15.2.0",
"react-komposer": "^1.8.0",
"react-router": "^2.5.2",
"react-tap-event-plugin": "^2.0.1"
}
}