-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.23 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.23 KB
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
{
"name": "create-next-app-ts",
"version": "0.0.3",
"description": "It automatically builds a nextjs, typescript and eslint working environment",
"bin": {
"create-next-app-ts": "./bin/generate-app.js"
},
"license": "MIT",
"homepage": "https://github.com/vvs-kim/create-next-app-ts",
"author": {
"name": "Wooseok Kim"
},
"repository": {
"type": "git",
"url": "https://github.com/vvs-kim/create-next-app-ts"
},
"keywords": [
"react",
"next",
"typescript",
"boilerplate",
"CRA",
"yarn-berry",
"zero-install",
"prettier",
"airbnb",
"eslint",
"prettier",
"styled-components",
"create-next-app",
"create next app"
],
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"export": "rm -rf ./build && next export -o build/",
"lint:fix": "eslint --fix './src/**/*.{ts,tsx,js,jsx}'"
},
"dependencies": {
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-color": "^3.0.6",
"@types/react-dom": "18.0.8",
"next": "13.0.3",
"react": "18.2.0",
"react-color": "^2.19.3",
"react-dom": "18.2.0",
"react-is": "^18.2.0",
"sharp": "^0.31.3",
"styled-components": "^5.3.6",
"styled-reset": "^4.4.2",
"typescript": "4.8.4"
},
"packageManager": "yarn@3.2.4",
"devDependencies": {
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.27.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.0.3",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "2.7.1"
}
}