-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.15 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.15 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
{
"name": "StyleExplorer",
"private": true,
"version": "1.0.0",
"description": "Application description.",
"scripts": {
"start": "meteor run",
"dev": "meteor --settings ./settings.json",
"deploy": "meteor --settings ./.deploy/settings.json",
"build": "meteor build ../ --architecture os.linux.x86_64"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-meteor": "^4.1.6",
"eslint-plugin-react": "^7.6.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,
"class-methods-use-this": 0,
"no-console": 0,
"no-underscore-dangle": 0,
"linebreak-style": "off"
}
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.39",
"babel-runtime": "^6.26.0",
"bcrypt": "^3.0.1",
"child-process": "^1.0.2",
"config": "^1.29.4",
"highcharts": "^6.0.6",
"jquery": "^3.3.1",
"jquery-validation": "^1.15.1",
"meteor-node-stubs": "^0.3.2",
"prop-types": "latest",
"react": "^16.2.0",
"react-addons-pure-render-mixin": "^15.3.2",
"react-addons-update": "^15.5.2",
"react-bootstrap": "^0.32.1",
"react-color": "^2.13.8",
"react-dom": "^16.7.0",
"react-dropzone": "^4.2.7",
"react-file-download": "^0.3.3",
"react-highcharts": "^16.0.2",
"react-komposer": "^2.0.0",
"react-router": "^4.2.0",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.2.2",
"react-sortable-hoc": "^0.6.2"
},
"babel": {
"plugins": [
"transform-class-properties"
]
}
}