-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.71 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.71 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
{
"name": "codezilla",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/dist/server.js",
"develop": "concurrently \"cd server && npm run watch\" \"sleep 3 && cd client && npm run dev\"",
"install": "cd server && npm i && cd ../client && npm i",
"build": "concurrently \"cd server && npm run build\" \"cd client && npm run build\"",
"render-build": "cd server && npm install && npm run build && cd ../client && npm install && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"npm --prefix server run dev\" \"npm --prefix client run dev\"",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/OutsideofemiT/Codezilla.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/OutsideofemiT/Codezilla/issues"
},
"homepage": "https://github.com/OutsideofemiT/Codezilla#readme",
"dependencies": {
"apollo-server-express": "^3.13.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^4.17.1",
"openai": "^4.95.1",
"react": "^19.1.0",
"concurrently": "^9.1.2"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.9",
"@types/mongoose": "^5.11.96",
"@types/node": "^22.14.1",
"concurrently": "^9.1.2",
"eslint": "^9.25.1",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.0.0",
"nodemon": "^3.1.9",
"tailwindcss": "^4.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0"
}
}