-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.73 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": "event-managment-system",
"version": "0.0.1",
"description": "It's a website that allow to create attend and rate events",
"main": "src/index.ts",
"scripts": {
"start": "NODE_ENV=development nodemon --exec ts-node src/index.ts",
"test-server": "NODE_ENV=test nodemon --exec ts-node src/index.ts",
"test": "NODE_ENV=test jest",
"ci": "start-server-and-test test-server http://localhost:8000 test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SofianSaleh/Event-managment-system.git"
},
"keywords": [
"Events"
],
"author": "Sofian Saleh",
"license": "ISC",
"bugs": {
"url": "https://github.com/SofianSaleh/Event-managment-system/issues"
},
"homepage": "https://github.com/SofianSaleh/Event-managment-system#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.28",
"@types/node": "^14.0.13",
"@types/nodemailer": "^6.4.0",
"@types/yup": "^0.29.3",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "3.9.5"
},
"dependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/lodash": "^4.14.156",
"@types/uuid": "^8.0.0",
"apollo-server-express": "^2.15.0",
"bcryptjs": "^2.4.3",
"chalk": "^4.1.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.1.0",
"graphql-tools": "^6.0.11",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.20",
"nodemailer": "^6.4.10",
"uuid": "^8.2.0",
"yup": "^0.29.1"
}
}