-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
99 lines (99 loc) · 2.98 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
91
92
93
94
95
96
97
98
99
{
"name": "naotimes-panel",
"version": "1.4.1",
"copyright": {
"name": "naoTimesDev",
"since": 2019
},
"description": "A web panel for naoTimes Showtimes Module",
"main": "dist/index.js",
"scripts": {
"build": "next build",
"build-vercel": "prisma:generate && next build",
"build-no-sentry": "cross-env SKIP_SENTRY=1 next build",
"start": "next start -p 6710",
"dev": "cross-env SKIP_SENTRY=1 next dev -p 6700",
"devdebug": "cross-env NODE_OPTIONS='--inspect' SKIP_SENTRY=1 next dev -p 6700",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint --ext ts --ext tsx --ext js pages/ lib/ components/",
"lintfix": "eslint --ext ts --ext tsx --ext js pages/ lib/ components/ --fix",
"testall": "npm-run-all lint type-check",
"prisma:generate": "prisma generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/naoTimesdev/webpanel.git"
},
"keywords": [
"nextjs"
],
"author": "N4O",
"license": "MIT",
"bugs": {
"url": "https://github.com/naoTimesdev/webpanel/issues"
},
"homepage": "https://github.com/naoTimesdev/webpanel#readme",
"devDependencies": {
"@tailwindcss/forms": "0.5.3",
"@types/cors": "2.8.12",
"@types/javascript-time-ago": "2.0.3",
"@types/lodash": "4.14.186",
"@types/luxon": "3.0.1",
"@types/node": "18.8.3",
"@types/prop-types": "15.7.5",
"@types/react": "18.0.21",
"@types/react-color": "3.0.6",
"@typescript-eslint/eslint-plugin": "5.39.0",
"@typescript-eslint/parser": "5.39.0",
"autoprefixer": "10.4.12",
"cross-env": "7.0.3",
"cssnano": "5.1.13",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-react": "7.31.8",
"postcss": "8.4.17",
"postcss-extend": "1.0.5",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-import": "15.0.0",
"postcss-nested": "6.0.0",
"postcss-preset-env": "7.8.2",
"prettier": "2.7.1",
"prisma": "4.4.0",
"tailwindcss": "3.1.8",
"typescript": "4.8.4"
},
"dependencies": {
"@badrap/bar-of-progress": "0.2.1",
"@kachkaev/react-inline-js": "0.4.0",
"@prisma/client": "4.4.0",
"@sentry/nextjs": "7.14.2",
"axios": "1.1.0",
"cors": "2.8.5",
"framer-motion": "7.5.2",
"highlight.js": "11.6.0",
"iron-session": "6.2.1",
"javascript-time-ago": "2.5.7",
"lodash": "4.17.21",
"luxon": "3.0.4",
"mdi-react": "9.0.0",
"next": "12.3.1",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-color": "2.19.3",
"react-countup": "6.3.1",
"react-dom": "18.2.0",
"react-intersection-observer": "9.4.0",
"react-loading-skeleton": "3.1.0",
"react-markdown": "8.0.3",
"react-select": "5.4.0",
"react-string-replace": "1.1.0",
"remark-breaks": "3.0.2",
"remark-gemoji": "7.0.1",
"remark-gfm": "3.0.1",
"simple-markdown": "0.7.3",
"twemoji": "14.0.2"
}
}