package.json
2.86 KB
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": "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.41.2",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-meteor": "^4.0.1",
"eslint-plugin-react": "^6.4.1"
},
"eslintConfig": {
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"meteor",
"react"
],
"extends": [
"airbnb/base",
"plugin:meteor/guide",
"plugin:react/recommended"
],
"env": {
"browser": true
},
"globals": {
"server": false,
"browser": false,
"expect": false
},
"rules": {
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"import/extensions": 0,
"no-underscore-dangle": [
"error",
{
"allow": [
"_id",
"_ensureIndex",
"_verifyEmailToken",
"_resetPasswordToken",
"_name"
]
}
],
"class-methods-use-this": 0
}
},
"dependencies": {
"babel-runtime": "^6.18.0",
"babyparse": "^0.4.6",
"bcrypt": "^0.8.7",
"bootstrap": "^4.0.0-alpha.6",
"csv2json-convertor": "^1.2.0",
"csvtojson": "^1.1.4",
"faker": "^4.1.0",
"fs": "0.0.1-security",
"jquery": "^2.2.4",
"jquery-ui": "^1.12.1",
"jquery-validation": "^1.15.1",
"json2csv": "^3.7.3",
"lodash": "^4.17.4",
"material-ui": "^0.17.1",
"meteor-node-stubs": "^0.2.6",
"moment": "^2.18.0",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-pure-render-mixin": "^15.3.2",
"react-addons-transition-group": "^15.4.2",
"react-bootstrap": "^0.30.8",
"react-bootstrap-date-picker": "^4.0.0",
"react-bootstrap-table": "^3.2.2",
"react-burger-menu": "^1.10.14",
"react-data-grid": "^2.0.31",
"react-data-grid-addons": "^2.0.31",
"react-dom": "^15.4.2",
"react-fontawesome": "^1.5.0",
"react-komposer": "^1.13.1",
"react-router": "^2.6.1",
"react-router-bootstrap": "^0.23.1",
"react-stepzilla": "^4.3.4",
"react-svg": "^2.1.19",
"react-tap-event-plugin": "^2.0.1",
"reactstrap": "^4.3.0",
"velocity-animate": "^1.4.3",
"velocity-react": "^1.2.1"
}
}