-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.77 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
{
"name": "technonatura-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test:dev": " nodemon --exec mocha -r ts-node/register tests/index.test.ts",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha --reporter mochawesome --reporter-options reportDir=test-results,reportFilename=test-results -r ts-node/register 'tests/**/*.ts' ",
"start": "tsc -w --copy-files && nodemon dist/server.js",
"dev": "nodemon --exec ts-node src/server.ts",
"build": "tsc"
},
"engines": {
"node": "16.10.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.23.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"chai": "^4.3.4",
"cloudinary": "^1.27.1",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-tools": "^7.0.4",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"method-override": "^3.0.0",
"mongoose": "^5.12.3",
"node-schedule": "^2.0.0",
"nodemailer": "^6.6.3",
"socket.io": "^4.1.2",
"validator": "^13.5.2"
},
"devDependencies": {
"@types/bcrypt": "^3.0.1",
"@types/chai": "^4.2.21",
"@types/cors": "^2.8.10",
"@types/crypto-js": "^4.0.2",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/lodash": "^4.14.170",
"@types/method-override": "0.0.31",
"@types/mocha": "^9.0.0",
"@types/node": "^14.14.37",
"@types/node-schedule": "^1.3.2",
"@types/nodemailer": "^6.4.4",
"@types/validator": "^13.1.3",
"copyfiles": "^2.4.1",
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"mocha": "^9.0.0",
"mochawesome": "^6.2.2",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4",
"typescript-cp": "^0.1.2"
}
}