-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.16 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "agro-e-commerce",
"version": "1.0.0",
"main": "dist/server.js",
"repository": "git@github.com:debotos/agro-e-commerce.git",
"author": "Debotos Das <debotosdas@gmail.com>",
"license": "LGPL-3.0-or-later",
"scripts": {
"cms": "yarn --cwd src/cms start",
"server": "ts-node-dev --respawn --transpileOnly ./src/server.ts",
"dev": "concurrently \"yarn run server\" \"yarn run cms\"",
"build-server": "tsc",
"build-cms": "yarn --cwd src/cms install && yarn --cwd src/cms build",
"build": "yarn run build-server && yarn run build-cms",
"start": "node ./build/server.js",
"postinstall": "yarn run build"
},
"engines": {
"node": ">=8.0.0 <11.0.0"
},
"dependencies": {
"@types/google-libphonenumber": "^7.4.17",
"apollo-server": "^2.6.7",
"apollo-server-express": "^2.6.7",
"app-root-path": "^2.2.1",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cloudinary": "^1.14.0",
"compression": "^1.7.4",
"concurrently": "^4.1.1",
"cors": "^2.8.5",
"dataloader": "^1.4.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"google-libphonenumber": "^3.2.3",
"graphql": "^14.4.2",
"graphql-iso-date": "^3.6.1",
"graphql-resolvers": "^0.3.3",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.6.2",
"morgan": "^1.9.1",
"pg": "^7.11.0",
"promises-all": "^1.0.0",
"sequelize": "^5.9.0",
"typescript": "^3.5.2",
"uuid": "^3.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/bcrypt": "^3.0.0",
"@types/compression": "^0.0.36",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/graphql": "^14.2.2",
"@types/graphql-iso-date": "^3.3.1",
"@types/graphql-resolvers": "^0.2.0",
"@types/helmet": "^0.0.43",
"@types/jsonwebtoken": "^8.3.2",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.5.6",
"@types/morgan": "^1.7.35",
"@types/pg": "^7.4.14",
"@types/sequelize": "^4.28.3",
"@types/uuid": "^3.4.5",
"@types/validator": "^10.11.1",
"@types/winston": "^2.4.4",
"ts-node-dev": "^1.0.0-pre.40",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0"
}
}