-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 758 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 758 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
{
"name": "performance-react",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"server": "json-server -d 750 -w -p 3333 ./server.js",
"analyze": "env ANALYZE=true yarn build"
},
"dependencies": {
"@next/bundle-analyzer": "^12.0.7",
"lodash": "^4.17.21",
"next": "12.0.7",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-virtualized": "^9.22.3"
},
"devDependencies": {
"@types/lodash": "^4.14.178",
"@types/node": "17.0.4",
"@types/react": "17.0.38",
"@types/react-virtualized": "^9.21.15",
"eslint": "8.5.0",
"eslint-config-next": "12.0.7",
"json-server": "^0.17.0",
"typescript": "4.5.4"
}
}