-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 KB
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
{
"name": "hera",
"version": "1.0.0-alpha.1",
"description": "Backend for forums v3 using Polka and TypeScript.",
"main": "out/index.js",
"repository": "https://github.com/mythicmc/Hera.git",
"license": "Apache-2.0",
"private": true,
"scripts": {
"dev": "nodemon -w src -w package.json -w config.json -e js,ts,mjs,json --exec \"tsc && node\" .",
"start": "node .",
"build": "tsc",
"lint": "eslint . --ext .js,.ts,.tsx && tsc --noEmit",
"test": "tsc && ava"
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"eris": "^0.13.3",
"mongodb": "^3.6.2",
"nanoid": "^3.1.15",
"nodemailer": "^6.4.12",
"polka": "^0.5.2"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.7",
"@types/mongodb": "^3.5.27",
"@types/nanoid": "^2.1.0",
"@types/polka": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"ava": "^3.13.0",
"eslint": "^7.10.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"nodemon": "^2.0.4",
"supertest-fetch": "^1.4.3",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "out/"
}
}
}
}