-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "nextmoo",
"version": "0.1.0",
"description": "Another web version of cowsay powered by Next.js",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erincones/nextmoo.git"
},
"author": "Erick Rincones <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/erincones/nextmoo/issues"
},
"homepage": "https://nextmoo.vercel.app",
"dependencies": {
"cowsayjs": "^2.0.0",
"next": "^13.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.0.0",
"@types/node": "^18.11.7",
"@types/react": "^18.0.23",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-next": "^13.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.0.0",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"stylelint": "^14.14.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^9.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.3.0",
"tailwindcss": "^3.2.1",
"typescript": "^4.2.4"
}
}