-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 774 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 774 Bytes
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
{
"name": "react_starter",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.14.3",
"@types/react": "^16.9.53",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"dependencies": {
"next": "^9.5.5",
"postcss-import": "^12.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tailwindcss": "^1.9.6"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
}
}