-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.26 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
{
"name": "nodejs-course",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"hw1-task1": "nodemon --exec babel-node homework-1/task-1.js",
"hw1-task2": "nodemon --exec babel-node homework-1/task-2.js",
"hw2": "nodemon --exec babel-node homework-2/index.ts --extensions \".ts\"",
"hw3": "nodemon --exec babel-node homework-3/index.ts --extensions \".ts\"",
"db:seed": "babel-node homework-3/scripts/database/seed_db.ts --extensions \".ts\"",
"db:clear": "babel-node homework-3/scripts/database/clear_db.ts --extensions \".ts\"",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"test:live": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Svvald/nodejs-course.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Svvald/nodejs-course/issues"
},
"homepage": "https://github.com/Svvald/nodejs-course#readme",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/hapi__joi": "^16.0.4",
"@types/jest": "^25.1.4",
"@types/jsonwebtoken": "^8.3.8",
"@types/supertest": "^2.0.8",
"@types/uuid": "^3.4.6",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"babel-jest": "^25.2.4",
"eslint": "^6.7.2",
"jest": "^25.2.3",
"nodemon": "^2.0.1",
"supertest": "^4.0.2",
"typescript": "^3.7.4"
},
"dependencies": {
"@hapi/joi": "^16.1.8",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-joi-validation": "^4.0.3",
"jsonwebtoken": "^8.5.1",
"pg": "^7.17.1",
"pg-hstore": "^2.3.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.3",
"uuid": "^7.0.1",
"winston": "^3.2.1"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}