-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 940 Bytes
/
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
{
"name": "ros_react_front",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --file src/app/**/*.{ts,tsx}",
"lint:fix": "next lint --fix --file src/app/**/*.{ts,tsx}",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json}'"
},
"dependencies": {
"@types/node": "20.4.4",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"eslint": "8.45.0",
"eslint-config-next": "13.4.12",
"next": "^13.5.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"recoil": "^0.7.7",
"roslib": "^1.3.0",
"styled-components": "^6.0.5",
"typescript": "5.1.6"
},
"volta": {
"node": "20.5.0"
},
"devDependencies": {
"@types/roslib": "^1.3.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "^3.0.0"
}
}