Minimize package.json and remove lock files from tracking
This commit is contained in:
parent
999ef7ff1f
commit
e1bd7e862e
2 changed files with 6 additions and 10 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -16,3 +16,4 @@ yarn-error.log*
|
||||||
/build
|
/build
|
||||||
/data
|
/data
|
||||||
/confs
|
/confs
|
||||||
|
*.lock
|
||||||
|
|
13
package.json
13
package.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "www",
|
"name": "readyornot",
|
||||||
"version": "0.2.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev:debug": "NODE_OPTIONS='--inspect' next dev -p 4042",
|
"dev:debug": "NODE_OPTIONS='--inspect' next dev -p 4042",
|
||||||
|
@ -10,22 +10,17 @@
|
||||||
"lint": "next lint"
|
"lint": "next lint"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/dockerode": "^3.3.14",
|
|
||||||
"@types/next": "^9.0.0",
|
"@types/next": "^9.0.0",
|
||||||
"dockerode": "^3.3.4",
|
|
||||||
"next": "^12.3.0",
|
"next": "^12.3.0",
|
||||||
"node": "^18.9.0",
|
|
||||||
"node-html-parser": "^5.3.3",
|
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"react-dom": "18.2.0",
|
"react-dom": "18.2.0",
|
||||||
"sharp": "^0.31.2",
|
"sharp": "^0.31.2",
|
||||||
"swr": "^1.3.0"
|
"swr": "^1.3.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^18.7.18",
|
|
||||||
"@types/react": "^18.0.14",
|
|
||||||
"eslint": "^8.23.1",
|
"eslint": "^8.23.1",
|
||||||
"eslint-config-next": "12.2.0",
|
"eslint-config-next": "12.2.0",
|
||||||
"typescript": "^4.7.4"
|
"@types/react": "^18.0.14",
|
||||||
|
"typescript": "4.9.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue