-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.36 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
{
"name": "that-was-tasty",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run watch\" \"npm run dev\" --names \"WEBPACK,TS-NODE-DEV\" --prefix name",
"dev": "ts-node-dev index.ts",
"watch": "webpack --watch",
"build": "webpack",
"test": "NODE_ENV=test jest --verbose --runInBand --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/szymonszoldra/that-was-tasty.git"
},
"author": "Szymon Szołdra",
"license": "ISC",
"bugs": {
"url": "https://github.com/szymonszoldra/that-was-tasty/issues"
},
"homepage": "https://github.com/szymonszoldra/that-was-tasty#readme",
"dependencies": {
"connect-flash": "^0.1.1",
"connect-mongo": "^4.5.0",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-validator": "^6.12.1",
"jimp": "^0.16.1",
"mongoose": "^5.13.8",
"mongoose-unique-validator": "^2.0.3",
"multer": "^1.4.3",
"node-fetch": "^2.6.5",
"passport": "^0.4.1",
"passport-local-mongoose": "^6.1.0",
"pug": "^3.0.2",
"slugify": "^1.6.0",
"uuid": "^3.4.0",
"validator": "^13.6.0"
},
"devDependencies": {
"@types/connect-flash": "^0.0.37",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/google.maps": "^3.45.6",
"@types/jest": "^27.0.1",
"@types/mongoose": "^5.11.97",
"@types/mongoose-unique-validator": "^1.0.5",
"@types/multer": "^1.4.7",
"@types/node-fetch": "^3.0.3",
"@types/passport-local-mongoose": "^4.0.15",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.1",
"@types/validator": "^13.6.3",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"autoprefixer": "^10.3.2",
"concurrently": "^6.2.1",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"jest": "^27.1.0",
"mini-css-extract-plugin": "^2.2.0",
"node-sass": "^6.0.1",
"postcss-loader": "^6.1.1",
"sass-loader": "^12.1.0",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
}
}