forked from LorenzoLeonardini/LessDestructiveFarm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.52 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
{
"name": "lessdestructivefarm",
"private": true,
"version": "0.1.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"dev": "ts-node --project tsconfig.server.json src/server.ts",
"dev:watch": "nodemon",
"build": "cross-env NODE_ENV=production tsc --project tsconfig.server.json && cross-env NODE_ENV=production next build",
"start": "cross-env NODE_ENV=production node build/server.js",
"prettier": "prettier --write src/**/*.{ts,tsx,js,css,html}"
},
"repository": {
"type": "git",
"url": "git@github.com:Giotino/LessDestructiveFarm.git"
},
"author": "Giotino <giovanni@minotti.io>",
"license": "UNLICENSED",
"dependencies": {
"@apollo/client": "^4.2.2",
"body-parser": "^2.2.2",
"chalk": "^5.6.2",
"class-validator": "^0.15.1",
"cors": "^2.8.6",
"cross-env": "^10.1.0",
"date-fns": "^4.4.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"graphql": "^16.14.1",
"graphql-http": "^1.22.4",
"next": "^16.2.7",
"pg": "^8.21.0",
"react": "^19.2.7",
"react-datepicker": "^9.1.0",
"react-dom": "^19.2.7",
"sequelize": "^6.37.8",
"sequelize-typescript": "^2.1.6",
"type-graphql": "^2.0.0-rc.3"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/graphql": "^14.5.0",
"@types/node": "^25.9.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"nodemon": "^3.1.14",
"prettier": "^3.8.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}