-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.68 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
{
"name": "trackflix",
"version": "1.0.0",
"license": "MIT",
"private": true,
"description": "trackflix",
"author": "florian-vuillemot",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"pre-commit": "npx lint-staged --config=.lintstagedrc.js",
"prepare": "cd ../.. && husky install apps/trackflix/.husky"
},
"lint-staged": {
"src/**/*.+(js|json|ts|tsx)": [
"eslint . --max-warnings=0"
],
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.1",
"@mui/lab": "^5.0.0-alpha.68",
"@mui/material": "^5.0.1",
"@types/react-modal": "^3.12.1",
"babel-plugin-styled-components": "^1.12.0",
"gatsby": "^3.4.1",
"gatsby-plugin-image": "^1.8.0",
"gatsby-plugin-manifest": "^3.7.1",
"gatsby-plugin-react-helmet": "^4.8.0",
"gatsby-plugin-react-svg": "^3.0.1",
"gatsby-plugin-sharp": "^3.8.0",
"gatsby-plugin-styled-components": "^4.5.0",
"gatsby-remark-images": "^5.5.0",
"gatsby-remark-relative-images": "^2.0.2",
"gatsby-source-filesystem": "^3.8.0",
"gatsby-transformer-remark": "^4.5.0",
"gatsby-transformer-sharp": "^3.8.0",
"graphql-ttl-transformer": "^1.1.0",
"html-react-parser": "^1.4.0",
"lodash": "^4.17.21",
"luxon": "^2.0.1",
"moment": "^2.29.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-icons": "^4.2.0",
"react-image-file-resizer": "^0.4.7",
"react-lines-ellipsis": "^0.15.0",
"react-loader-spinner": "^4.0.0",
"react-modal": "^3.14.3",
"react-player": "^2.9.0",
"react-slick": "^0.28.1",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.0",
"url": "^0.11.0",
"video.js": "^7.11.8"
},
"devDependencies": {
"@types/luxon": "^1.27.1",
"@types/react-helmet": "^6.1.1",
"@types/react-lines-ellipsis": "^0.15.2",
"@types/react-slick": "^0.23.5",
"@types/styled-components": "^5.1.9",
"@types/video.js": "^7.3.17",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"gatsby-cli": "^3.7.1",
"gatsby-plugin-typescript": "^3.6.0",
"husky": "^6.0.0",
"node-filter-async": "^2.0.0",
"react-is": "^17.0.2",
"typescript": "^4.3.2"
}
}