-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 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
{
"name": "zeus",
"version": "1.0.0-alpha.1",
"description": "Frontend for Mythic Forums v3.",
"main": "index.js",
"repository": "https://gitlab.com/mythicmc/zeus.git",
"license": "Apache-2.0",
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint . --ignore-pattern *.d.ts"
},
"dependencies": {
"draft-js": "^0.11.7",
"next": "^10.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"remark-gfm": "^1.0.0",
"remark-parse": "^9.0.0",
"remark-react": "^8.0.0",
"swr": "^0.3.9",
"unified": "^9.2.0"
},
"devDependencies": {
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}