forked from GSG-G11/Quizzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.38 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "quizzer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"npm": "7.0.0",
"node": "16.0.0"
},
"scripts": {
"start": "NODE_ENV=production node dist/index.js",
"dev": "cross-env NODE_ENV=development ts-node-dev server/index.ts",
"test": "cross-env NODE_ENV=test jest -i",
"build": "tsc -p .",
"prepare": "is-ci || npx husky install",
"client": "cd client/ && npm start",
"heroku-postbuild": "npm run build && cd client/ && npm i && npm run build",
"lint": "eslint --ext .ts server/ && eslint --ext .tsx client/src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSG-G11/Quizzer.git"
},
"keywords": [
"eslint",
"typescript",
"node",
"express",
"react",
"react-router",
"axios",
"jest",
"supertest",
"nodemon",
"husky",
"heroku",
"heroku-postbuild"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/GSG-G11/Quizzer/issues"
},
"homepage": "https://github.com/GSG-G11/Quizzer#readme",
"dependencies": {
"babel-jest": "^27.5.1",
"bcrypt": "^5.0.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"nanoid": "^3.3.3",
"nodemailer": "^6.7.3",
"pg": "^8.7.3",
"pg-escape": "^0.2.0",
"ts-jest": "^27.1.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.25",
"@types/nodemailer": "^6.4.4",
"@types/pg": "^8.6.5",
"@types/pg-escape": "^0.2.1",
"@types/supertest": "^2.0.12",
"@types/uniqid": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"cross-env": "^7.0.3",
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jest": "^27.5.1",
"supertest": "^6.2.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
}
}