forked from Charcoal-SE/metasmoke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 2.33 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
{
"scripts": {
"test": "xo"
},
"xo": {
"envs": [
"browser",
"es6"
],
"globals": [
"$"
],
"parser": "babel-eslint",
"space": true,
"rules": {
"no-prototype-builtins": "off",
"no-eval": 1,
"no-useless-call": 1,
"unicorn/filename-case": [
"error",
{
"case": "snakeCase"
}
],
"object-curly-spacing": [
"error",
"always"
],
"camelcase": [
"error",
{
"properties": "never"
}
],
"no-eq-null": "off",
"eqeqeq": [
"error",
"smart"
],
"no-alert": "off",
"spaced-comment": [
"error",
"always",
{
"exceptions": [
"*"
]
}
],
"no-console": "error",
"brace-style": [
"error",
"stroustrup"
],
"no-mixed-operators": "off",
"no-multi-assign": "off",
"import/extensions": "off"
}
},
"dependencies": {
"actioncable": "^5.1.1",
"bootstrap-select": "^1.12.2",
"debug": "^2.6.9",
"jailed": "^0.3.1",
"jquery": ">=3.5.0",
"jquery-tablesort": "^0.0.11",
"jquery-ujs": "^1.2.2",
"livestamp": "github:mattbradley/livestampjs#7572242",
"moment": "^2.29.4",
"turbolinks": "^5.0.3"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "7.x",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babili-webpack-plugin": "^0.1.1",
"coffee-loader": "^0.7.3",
"coffee-script": "^1.12.6",
"compression-webpack-plugin": "^0.4.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"glob": "^7.1.2",
"js-yaml": "^3.13.1",
"path-complete-extname": "^0.1.0",
"postcss-loader": "^2.0.5",
"postcss-smart-import": "^0.7.4",
"rails-erb-loader": "^5.0.1",
"resolve-url-loader": ">=2.0.2",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.2",
"webpack": "^2.6.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "2.11.4",
"webpack-manifest-plugin": "^1.1.0",
"webpack-merge": "^4.1.0",
"xo": "^0.18.2"
}
}