This repository has been archived by the owner on Oct 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.52 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
{
"name": "temp-frontend",
"version": "0.0.1",
"description": "a temporary frontend application for pr1sm",
"author": "Jonas Raphael Schultheiss",
"private": true,
"license": "UNLICENSED",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint '*/**/*.{js,jsx}' --quiet",
"lint:fix": "eslint '*/**/*.{js,jsx}' --quiet --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix -f git-log",
"prettier --write",
"git add"
],
"*.{js,jsx}/": [
"eslint --fix",
"git add"
],
"*.{js,css,md}": "prettier --write"
},
"dependencies": {
"autoprefixer": "^10.2.5",
"framer-motion": "^3.1.3",
"next": "10.0.4",
"postcss": "^8.2.2",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-spring": "^8.0.27",
"swr": "^0.4.0",
"tailwindcss": "^2.0.2",
"tailwindcss-aspect-ratio": "^3.0.0"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.6.0",
"eslint-plugin-unicorn": "^28.0.2",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
}
}