-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 2.95 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "filmboard-cms",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "xo",
"lint-fix": "xo --fix",
"test": "yarn run lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.12",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"babel-polyfill": "^6.26.0",
"bulma": "^0.9.1",
"cleave.js": "^1.6.0",
"clone": "^2.1.2",
"cors": "^2.8.5",
"dayjs": "^1.9.6",
"dotenv-webpack": "^4.0.0",
"download": "^8.0.0",
"express": "^4.17.1",
"fluent-ffmpeg": "^2.1.2",
"formidable": "^1.2.2",
"hasha": "^5.2.2",
"isomorphic-unfetch": "^3.1.0",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.11.0",
"mapbox-gl": "^1.12.0",
"moviedb-promise": "^3.1.9",
"next": "~9.5.5",
"next-cookies": "^2.0.3",
"node-sass": "^4.14.1",
"nodemailer": "^6.4.16",
"omdb-client": "^2.0.0",
"pg": "^8.4.2",
"query-string": "^6.13.7",
"rbx": "^2.2.0",
"react": "^16.6.0",
"react-autosuggest": "^10.0.3",
"react-autosuggest-bulma-pure": "^9.4.3",
"react-datepicker": "^3.3.0",
"react-dom": "^16.6.0",
"react-google-login": "^5.1.24",
"react-map-gl": "^5.2.10",
"react-mde": "^11.0.0",
"react-youtube": "^7.13.1",
"sequelize": "^5.21.13",
"sharp": "^0.26.2",
"showdown": "^1.9.1",
"uuid": "^8.3.1",
"webpack": "^4.43.0",
"youtube-search": "^1.1.6",
"ytdl-core": "^4.8.2"
},
"devDependencies": {
"@types/youtube": "^0.0.38",
"babel-eslint": "^10.1.0",
"del": "^5.1.0",
"eslint": "^7.12.1",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"next-compose-plugins": "^2.2.1",
"next-transpile-modules": "^4.1.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"xo": "^0.34.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn run test"
}
},
"xo": {
"space": true,
"extends": "xo-react",
"env": [
"browser",
"node"
],
"rules": {
"unicorn/filename-case": [
0
],
"import/no-unassigned-import": [
0
],
"react/state-in-constructor": [
0
],
"react/prop-types": [
0
],
"react/static-property-placement": [
0
],
"react/no-danger": [
0
],
"no-alert": [
0
],
"import/extensions": [
0
],
"unicorn/prevent-abbreviations": [
0
],
"import/no-anonymous-default-export": [
0
],
"unicorn/no-reduce": [
0
],
"react/jsx-pascal-case": [
0
]
}
}
}