This repository has been archived by the owner on Jan 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 1.7 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
{
"name": "soundstorm",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^5.5.0",
"@rails/webpacker": "^4.0.7",
"activestorage": "^5.2.1",
"animate.css": "^3.7.0",
"babel-plugin-transform-runtime": "^6.23.0",
"hamljs-loader": "^0.1.1",
"hls.js": "^0.12.4",
"hotkeys-js": "^3.4.1",
"moment": "^2.22.2",
"moment-duration-format": "^2.2.2",
"normalize.css": "^8.0.1",
"rails-ujs": "^5.2.1",
"stimulus": "^1.1.0",
"stylelint-config-recommended-scss": "^3.2.0",
"turbolinks": "^5.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint-config-standard": "^12.0.0",
"stylelint": "^9.8.0",
"stylelint-scss": "^3.4.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-server": "^3.7.2"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parser": "babel-eslint",
"rules": {
"semi": [
"error",
"never"
],
"quotes": [
"error",
"double"
],
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "none"
}
],
"no-trailing-spaces": [
"error"
],
"no-multiple-empty-lines": [
"error",
{
"max": 2
}
],
"prefer-const": [
"error"
],
"getter-return": [
"error"
],
"curly": [
"error",
"multi-line"
]
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"parserOptions": {
"sourceType": "module"
}
},
"stylelint": {
"extends": "stylelint-config-recommended-scss",
"rules": {
"block-no-empty": null
}
}
}