-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "digitalDreams_backend",
"version": "1.0.0",
"description": "investment site",
"main": "server.js",
"scripts": {
"start": "node dist/server.js",
"build": "tsc -p . && ncp src/schema dist/schema",
"start:dev": "npm run build:dev",
"build:dev": "nodemon src/server.ts --exec ts-node src/server.ts -e ts,graphql",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bluebird": "^3.5.32",
"@types/compression": "^1.7.0",
"@types/express": "^4.17.8",
"@types/graphql": "^14.5.0",
"@types/graphql-depth-limit": "^1.1.2",
"@types/node": "^14.14.2",
"@types/nodemailer": "^6.4.0",
"@types/sequelize": "^4.28.9",
"@types/validator": "^13.1.0",
"graphql-depth-limit": "^1.1.0",
"graphql-import": "^1.0.2",
"graphql-import-node": "0.0.4",
"nodemon": "^2.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/node-cron": "^2.0.3",
"apollo-server-express": "^2.18.2",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookies": "^0.8.0",
"cors": "^2.8.5",
"dayjs": "^1.9.5",
"express": "^4.17.1",
"graphql": "^15.3.0",
"http": "0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5",
"ncp": "^2.0.0",
"node-cron": "^2.0.3",
"nodemailer": "^6.4.15",
"sequelize": "^6.3.5"
}
}