-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.31 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
{
"name": "mindversity-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"devwin": "set NODE_OPTIONS='--inspect' & next dev",
"build": "next build",
"start": "next start",
"lint": "yarn lint:tsc ; yarn lint:eslint",
"lint:tsc": "tsc -p tsconfig.json --noEmit",
"lint:eslint": "eslint '**/*.{tsx,ts,js,jsx,json}' --fix"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cookie": "^0.4.0",
"@types/events": "^3.0.0",
"@types/formidable": "^1.0.31",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.36",
"@types/nodemailer": "^6.4.0",
"@types/styled-components": "^5.1.3",
"bcrypt": "^5.0.0",
"contentful": "^7.14.8",
"contentful-management": "^6.1.2",
"cookie": "^0.4.1",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"formidable": "^1.2.2",
"isomorphic-unfetch": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.7",
"next": "^10.0.4",
"next-images": "^1.5.0",
"nodemailer": "^6.4.16",
"react": "16.13.1",
"react-bootstrap": "^1.3.0",
"react-dom": "16.13.1",
"react-icons": "^3.11.0",
"react-quill": "^1.3.5",
"sass": "^1.27.0"
},
"devDependencies": {
"@types/node": "^14.0.6",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"eslint-plugin-tsc": "^1.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.7",
"prettier": "^2.0.5",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx,ts,js,jsx,json}": [
"eslint --fix --plugin tsc --rule 'tsc/config: [2, {configFile: \"./tsconfig.json\"}]'"
]
}
}