-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.19 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
{
"name": "willdavsmith.com",
"author": "@willdavsmith",
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"typecheck": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js"
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"framer-motion": "^4.1.16",
"next": "^10.0.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-github-languages": "^1.0.0",
"react-icons": "^4.2.0",
"tailwindcss": "2.1.2"
},
"devDependencies": {
"@types/node": "^15.0.2",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"autoprefixer": "^10.0.4",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"lint-staged": "^11.0.0",
"postcss": "^8.1.10",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}