-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.71 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"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-boost": "^0.4.4",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"cors": "^2.8.5",
"cross-env": "^6.0.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"isomorphic-unfetch": "^3.0.0",
"moment": "^2.24.0",
"next": "^9.3.4",
"next-server": "^9.0.5",
"nprogress": "^0.2.0",
"pg": "^8.7.3",
"react": "^16.10.2",
"react-datepicker": "^2.14.1",
"react-dom": "^16.10.2",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.22.5",
"sequelize-typescript": "^1.1.0",
"type-graphql": "^0.17.5"
},
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/graphql": "^14.5.0",
"@types/node": "^12.12.35",
"@types/nprogress": "^0.2.0",
"@types/react": "^16.9.34",
"@types/react-datepicker": "^2.11.0",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"ts-node": "^8.8.2",
"typescript": "^3.6.4"
}
}