-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.04 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
{
"name": "sparta-war-room",
"description": "This application serves as the official website for Spartan warriors, with a design inspired by the spirit of Sparta. The app allows access to classified information of the Spartan army only to registered Spartan users.",
"author": "afek-sakaju",
"homepage": "https://github.com/Afek-Sakaju/sparta-war-room#readme",
"keywords": [
"authentication",
"login",
"register"
],
"version": "1.0.0",
"private": true,
"main": "index.js",
"scripts": {
"start": "npm run migrateDB && npm run build && node dist/app.js",
"dev-with-migrations": "npm run migrateDB && nodemon src/app.ts",
"dev": "nodemon src/app.ts",
"lint": "eslint .",
"build:watch": "tsc -w",
"build": "tsc",
"migrateDB": "npm run migrate-mongo:up",
"migrate-mongo:up": "migrate-mongo up",
"migrate-mongo:down": "migrate-mongo down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Afek-Sakaju/sparta-war-room.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Afek-Sakaju/sparta-war-room/issues"
},
"dependencies": {
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fs": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"migrate-mongo": "^10.0.0",
"mongoose": "^6.7.2",
"path": "^0.12.7"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.5",
"@types/jsonwebtoken": "^8.5.9",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}