-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.94 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.94 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "refixly",
"version": "1.0.0",
"description": "AI + AR Powered DIY Repair Assistant",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "cd client && npm run dev",
"dev:server": "cd server && npm run dev",
"build": "npm run build:client && npm run build:server",
"build:client": "cd client && npm run build",
"build:server": "cd server && npm run build",
"test": "npm run test:client && npm run test:server",
"test:client": "cd client && npm run test",
"test:server": "cd server && npm run test",
"lint": "npm run lint:client && npm run lint:server",
"lint:client": "cd client && npm run lint",
"lint:server": "cd server && npm run lint",
"lint:fix": "npm run lint:fix:client && npm run lint:fix:server",
"lint:fix:client": "cd client && npm run lint:fix",
"lint:fix:server": "cd server && npm run lint:fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"install:all": "npm install && cd client && npm install && cd ../server && npm install",
"clean": "npm run clean:client && npm run clean:server",
"clean:client": "cd client && rm -rf node_modules dist",
"clean:server": "cd server && rm -rf node_modules dist"
},
"devDependencies": {
"concurrently": "^8.2.2",
"prettier": "^3.2.5"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"keywords": [
"ai",
"ar",
"repair",
"diy",
"computer-vision",
"tensorflow",
"react",
"nodejs"
],
"author": "Bavanetha M R",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Bavanetha27/refixly.git"
},
"bugs": {
"url": "https://github.com/Bavanetha27/refixly/issues"
},
"homepage": "https://github.com/Bavanetha27/refixly#readme"
}