This repository was archived by the owner on Sep 2, 2021. 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
44 lines (44 loc) · 1.3 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.3 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
{
"name": "furrybotdashboard",
"description": "Web Dashboard for Furry Bot, made with React, Next.js and TailwindCSS",
"version": "1.0.0",
"license": "MIT",
"repository": "https://github.com/FurryBotCo/FurryBotDashboard",
"maintainers": [
{
"email": "cutie@floofy.dev",
"name": "Chris \"August\" Hernandez",
"url": "https://floofy.dev"
}
],
"scripts": {
"build": "npm run lint && npm run clean && next build",
"start": "npm run lint && npm run clean && next start",
"clean": "rm -rf build",
"lint": "eslint src --ext .ts,.tsx,.js,.jsx --fix",
"dev": "npm run lint && npm run clean && next dev"
},
"dependencies": {
"next": "10.0.6",
"react": "17.0.1",
"react-dom": "17.0.1",
"sass": "1.32.6",
"tailwindcss": "2.0.2"
},
"devDependencies": {
"@augu/eslint-config": "1.10.0",
"@csstools/postcss-sass": "4.0.0",
"@types/node": "14.14.25",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@typescript-eslint/eslint-plugin": "4.14.2",
"@typescript-eslint/parser": "4.14.2",
"autoprefixer": "10.2.4",
"css-loader": "5.0.1",
"eslint": "7.19.0",
"postcss": "8.2.5",
"postcss-cli": "8.3.1",
"postcss-import": "14.0.0",
"typescript": "4.1.3"
}
}