-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.55 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
36
37
38
39
40
41
42
{
"name": "grocery-list",
"version": "1.0.0",
"description": "Automatically sort groceries by aisle",
"scripts": {
"dev": "npm-run-all --parallel dev-server dev-client",
"dev-server": "cd server && npm run dev",
"dev-client": "cd client && npm run dev",
"install-all": "npm i && npm-run-all --parallel install-server install-client",
"install-server": "cd server && npm i",
"install-client": "cd client && npm i",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"build-client": "cd client && npm run build",
"build-server": "cd server && npm run build",
"docker:dev": "cd server && docker compose -f docker-compose.dev.yml up --build",
"docker:dev-full": "npm-run-all --parallel docker:dev dev-client",
"docker:dev-clean": "cd server && docker compose -f docker-compose.dev.yml down -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnwdunn20/grocery-list.git"
},
"author": "John Dunn",
"license": "ISC",
"bugs": {
"url": "https://github.com/johnwdunn20/grocery-list/issues"
},
"homepage": "https://github.com/johnwdunn20/grocery-list#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"npm-run-all": "^4.1.5",
"typescript": "^5.3.3"
}
}