-
Notifications
You must be signed in to change notification settings - Fork 447
/
package.json
95 lines (95 loc) · 2.63 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
{
"private": true,
"name": "resumake.io",
"version": "3.0.0",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"lint": "next lint",
"format": "prettier --write src",
"format:check": "prettier --check src",
"postinstall": "cp node_modules/swiftlatex/dist/swift*.js node_modules/swiftlatex/dist/*.wasm public"
},
"dependencies": {
"archiver": "^5.3.1",
"common-tags": "^1.8.2",
"jotai": "^1.7.0",
"next": "^13.5.4",
"polished": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.31.3",
"react-icons": "^4.4.0",
"react-pdf": "^5.7.2",
"styled-components": "^5.3.3",
"styled-reset": "^4.4.1",
"swiftlatex": "https://github.com/ducaale/SwiftLaTeX/releases/download/v1.0.0-experimental-9902734/swiftlatex-1.0.0-experimental-9902734.tgz"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/common-tags": "^1.8.1",
"@types/node": "16.11.12",
"@types/react": "17.0.37",
"@types/react-pdf": "^5.0.9",
"@types/styled-components": "^5.1.17",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^7.32.0",
"eslint-config-next": "^13.4.7",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "2.7.1",
"typescript": "4.5.3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"eslintConfig": {
"extends": [
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@next/next/recommended"
],
"plugins": [
"@typescript-eslint",
"react-hooks"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
},
"rules": {
"no-console": "warn",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "error",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"react/display-name": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"args": "none"
}
],
"@typescript-eslint/no-inferrable-types": "off"
}
}
}