-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.88 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
{
"name": "webstore-back",
"version": "1.0.0",
"description": "",
"main": "dist/server.js",
"scripts": {
"test": "ts-mocha src/tests/**.test.ts",
"start": "tsc && node dist/server",
"dev": "nodemon",
"lint": "eslint . --ext .ts",
"data:import": "node dist/seeder",
"data:destroy": "node dist/seeder -d",
"build": "node -r dotenv/config --loader tsx esbuild.config.js"
},
"author": "Aleksandar Ristic",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/mongoose-sequence": "^3.0.7",
"@types/mocha": "^10.0.1",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.7.0",
"jsonwebtoken": "^9.0.0",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"mongodb-memory-server": "^8.12.1",
"mongoose": "^6.9.2",
"mongoose-sequence": "^5.3.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"uuid": "^9.0.0"
}
}