This repository was archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.73 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.73 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
{
"name": "@animeline/web",
"version": "0.1.0",
"private": true,
"scripts": {
"fix": "yarn format:fix && yarn lint:fix",
"lint": "eslint ./ --ext js,jsx,ts,tsx",
"lint:fix": "eslint ./ --ext js,jsx,ts,tsx --fix",
"format": "prettier --check ./**/*.{js,jsx,ts,tsx}",
"format:fix": "prettier --write ./**/*.{js,jsx,ts,tsx}",
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@chakra-ui/react": "^2.1.0",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/poppins": "^4.5.8",
"@hitechline/reactools": "^1.1.3",
"axios": "^0.27.2",
"framer-motion": "^6.3.3",
"next": "^12.1.6",
"phosphor-react": "^1.4.1",
"polished": "^4.2.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-player": "^2.10.1",
"url-join": "^5.0.0",
"video.js": "^7.19.2",
"videojs-contrib-quality-levels": "^2.1.0",
"videojs-http-source-selector": "^1.1.6"
},
"devDependencies": {
"@hitechline/eslint-config": "^2.0.2",
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/video.js": "^7.3.40",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"prettier": "^2.6.2",
"typescript": "^4.6.4"
}
}