-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.91 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@metro/guide",
"description": "Official User Guide/Documentation for the Metro Reviews API and Website.",
"homepage": "https://github.com/MetroReviews/Guide",
"license": "No License",
"author": {
"name": "Toxic Dev",
"url": "https://toxicdev.me"
},
"version": "1.1.0-dev",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/MetroReviews/Guide.git"
},
"bugs": {
"url": "https://github.com/MetroReviews/Guide/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"analyze": "cross-env ANALYZE=true next build",
"prepare": "husky install"
},
"dependencies": {
"@faceless-ui/collapsibles": "^1.0.5",
"@faceless-ui/css-grid": "^1.0.9",
"@faceless-ui/jumplist": "^1.0.9",
"@faceless-ui/modal": "^1.1.8",
"@faceless-ui/mouse-info": "^1.2.6",
"@faceless-ui/scroll-info": "^1.2.7",
"@faceless-ui/window-info": "^2.0.4",
"@types/react-syntax-highlighter": "^13.5.2",
"next": "^12.1.6",
"react": "18.0.0",
"react-dom": "18.0.0",
"styled-components": "5.3.5",
"react-copy-to-clipboard": "5.1.0",
"react-syntax-highlighter": "^15.4.5",
"sass": "^1.42.1"
},
"devDependencies": {
"@types/node": "^17.0.27",
"@types/react": "18.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"cross-env": "^7.0.3",
"dedent": "^0.7.0",
"eslint": "7.32.0",
"eslint-config-next": "12.0.9",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"typescript": "^4.6.4"
},
"lint-staged": {
"*.+(js|jsx|ts|tsx)": [
"eslint --fix"
],
"*.+(js|jsx|ts|tsx|json|css|md|mdx)": [
"prettier --write"
]
}
}