-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 3.14 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
100
101
102
103
104
105
106
107
108
109
{
"name": "helpkb",
"version": "0.0.1",
"description": "A superfast and easy to use knowledge base to help your customers get the info they need, when they need it most.",
"keywords": [
"helpkb",
"kb",
"knowledge base",
"help",
"support",
"static website",
"nextjs",
"react"
],
"repository": "github:mrvautin/helpkb",
"bugs": {
"url": "https://github.com/mrvautin/helpkb/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "Mark Moffat",
"email": "[email protected]",
"url": "https://helpkb.markmoffat.com/"
},
"private": false,
"scripts": {
"dev": "npx next dev",
"prod": "yarn build && yarn start",
"build": "npx next build",
"lint": "npx next lint",
"test": "npx dotenv -e .env.test -- jest --verbose ./__tests__/specs --runInBand",
"setup": "node setup.js",
"deploy": "npx dotenv -e .env.production -- yarn build && ",
"db:setup:test": "npx dotenv -e .env.test -- npx prisma db push",
"db:setup:dev": "npx dotenv -e .env.development -- npx prisma db push",
"db:setup:prod": "npx dotenv -e .env.production -- npx prisma db push",
"postbuild": "next-sitemap",
"postinstall": "npx prisma generate"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.337.0",
"@prisma/client": "^4.14.1",
"array-move": "^4.0.0",
"axios": "^0.26.0",
"bootstrap": "^5.2.3",
"date-fns": "^2.28.0",
"dedent": "^0.7.0",
"formidable": "^2.1.1",
"gray-matter": "^4.0.3",
"next": "13.4.2",
"next-auth": "^4.22.1",
"next-sitemap": "^4.1.3",
"nextjs-progressbar": "^0.0.14",
"react": "^18.2.0",
"react-bootstrap": "^2.4.0",
"react-confirm-alert": "^2.8.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "latest",
"react-easy-sort": "^1.5.0",
"react-ga4": "^1.4.1",
"react-hot-toast": "^2.2.0",
"react-markdown": "^8.0.3",
"react-resize-detector": "^7.1.1",
"react-social-login": "^3.4.17",
"react-spinners": "^0.12.0",
"react-syntax-highlighter": "^15.5.0",
"sharp": "^0.30.6",
"string-strip-html": "^9.1.12",
"uuid": "^9.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"dotenv-cli": "^7.2.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"eslint": "^8.10.0",
"eslint-config-next": "^13.4.2",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-testing-library": "^5.11.0",
"eslint-plugin-validate-jsx-nesting": "^0.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-enzyme": "^7.1.2",
"lodash": "^4.17.21",
"next-test-api-route-handler": "^3.1.8",
"prettier": "^2.8.8",
"prisma": "^4.14.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}