-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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
{
"name": "vely",
"version": "1.0.0",
"description": "vely",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./build && tsc",
"start": "npm run build && node ./build/index.js",
"start:dev": "tsc-watch --onSuccess \"node ./build/index.js\"",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"author": "NanoLogic",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/connect-flash": "^0.0.37",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "^16.10.9",
"@types/nunjucks": "^3.2.0",
"@types/passport": "^1.0.7",
"@types/passport-github": "^1.1.6",
"@types/passport-local": "^1.0.34",
"@types/passport-oauth2": "^1.4.11",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.3"
},
"dependencies": {
"axios": "^0.23.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"chalk": "^4.1.2",
"connect-flash": "^0.1.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-recaptcha": "^5.0.2",
"express-session": "^1.17.2",
"mongoose": "^6.0.10",
"nunjucks": "^3.2.3",
"passport": "^0.5.0",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0"
}
}