-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.14 KB
/
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
{
"name": "link-sharing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"scripts": {
"init": "docker exec -t server npm run seed",
"dev": "docker-compose -f ./docker/development/docker-compose.yml up --build --remove-orphans",
"staging": "docker-compose -f ./docker/staging/docker-compose.yml up --build --remove-orphans",
"build": "docker image rm minhsiung/devlinks.client -f && docker image rm minhsiung/devlinks.server -f && docker compose -f ./docker/production/docker-compose.yml build && docker push minhsiung/devlinks.client && docker push minhsiung/devlinks.server"
},
"workspaces": [
"app/server",
"app/client"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-next": "14.1.4",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0"
}
}