-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.81 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
{
"name": "professor",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_OPTIONS='--inspect' next dev -p 3002",
"build": "next build",
"start": "next start",
"test": "jest",
"postbuild": "next-sitemap",
"type-check": "tsc --noEmit -p tsconfig.json",
"lint-eslint": "eslint --ignore-path .eslintignore --ext .js,.jsx,.ts,.tsx",
"lint-prettier": "prettier --ignore-path .prettierignore"
},
"dependencies": {
"@giphy/js-fetch-api": "^3.0.0",
"@reach/dialog": "^0.15.0",
"@reach/tooltip": "^0.15.0",
"firebase": "^8.3.3",
"firebase-admin": "^9.6.0",
"framer-motion": "^4.1.2",
"next": "10.1.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.0.4",
"slugify": "^1.5.0",
"string-similarity": "^4.0.4",
"styled-components": "^5.2.3"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/react": "^17.0.3",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-styled-components": "^1.12.0",
"cross-env": "^7.0.3",
"eslint": "^7.23.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.3",
"jest": "^26.6.3",
"lint-prepush": "^2.1.0",
"next-sitemap": "^1.6.25",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"lint-prepush": {
"tasks": {
"base": "main",
"./**/*.{js,jsx,ts,tsx}": [
"npm run lint-prettier -- --write",
"git add"
]
}
},
"husky": {
"hooks": {
"pre-push": "npm run type-check && lint-prepush"
}
}
}