-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.66 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
{
"name": "quiz-learner",
"version": "0.0.2",
"description": "Quiz learner server side project",
"main": "index.js",
"scripts": {
"start": "tsc & ts-node ./src/index.ts",
"build": "rimraf build && tsc",
"dev": "concurrently \"tsc -w\" \"nodemon ./build/index.js\"",
"watch": "tsc & nodemon ./src/index.ts",
"lint": "eslint . & echo 'lint complete'",
"test": "jest --testEnvironment=node",
"test-dev": "jest --watch --verbose true --testEnvironment=node",
"coverage": "jest --coverage"
},
"repository": "https://github.com/Nezhdetov/quiz-learner.git",
"author": "Gyokan Syuleymanov",
"license": "MIT",
"engines": {
"node": "14.5.0"
},
"dependencies": {
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.2.0",
"mongoose": "^5.7.5",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"standard": "^12.0.1",
"validator": "^9.4.1"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.4",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.32",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.23",
"@types/passport": "^1.0.4",
"@types/passport-local": "^1.0.33",
"concurrently": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-google": "^0.14.0",
"jest": "^26.1.0",
"nodemon": "^1.19.4",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}