-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.26 KB
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
{
"name": "ourgroceries-tool",
"version": "1.0.0",
"type": "module",
"description": "A tool for interacting with OurGroceries",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "npm run lint && npm run format && npm run build:frontend && tsc",
"build:frontend": "npm --prefix frontend run build",
"dev": "npm-run-all --parallel dev:backend dev:frontend",
"dev:backend": "tsx watch src/index.ts",
"dev:frontend": "npm --prefix frontend run dev",
"lint": "eslint src frontend/src",
"format": "prettier --check \"src/**/*.{ts,tsx,mjs}\" \"frontend/src/**/*.{ts,tsx,js,jsx,css}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.24",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-no-relative-import-paths": "^1.6.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.3.3",
"typescript-eslint": "^8.46.3"
},
"dependencies": {
"express": "^4.18.3",
"ourgroceries": "^1.0.0"
}
}