-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 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
{
"name": "qqch",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint './pages/**/*.{ts,tsx}'",
"ts-node": "ts-node --compiler-options '{\"module\":\"CommonJS\"}'",
"prepare": "husky install",
"migrate:deploy": "prisma migrate deploy",
"prisma:generate": "prisma generate"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@prisma/client": "^2.22.1",
"@ts-stack/markdown": "^1.4.0",
"axios": "^0.27.2",
"clsx": "^1.2.1",
"date-fns": "^2.21.1",
"gray-matter": "^4.0.2",
"highlight.js": "^11.1.0",
"next": "^10.0.0",
"next-auth": "^4.3.4",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-markdown": "^6.0.2",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"sass": "^1.32.12",
"superjson": "^1.7.4"
},
"devDependencies": {
"@types/node": "^15.3.0",
"@types/react": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-plugin-superjson-next": "^0.3.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"faker": "^5.5.3",
"husky": "^7.0.2",
"prettier": "^2.2.1",
"prisma": "^2.22.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}