-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "webmap-entrance",
"private": true,
"version": "0.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"changelog": "conventional-changelog -p angular -u",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"cover": "nyc yarn run test",
"cover:check": "nyc --check-coverage --reporter=lcov yarn run test",
"lint": "eslint --ext .ts --fix src/**/*.ts",
"preversion": "yarn run build && yarn run cover:check",
"postversion": "git push && git push --tags",
"dev": "nodemon ./src/index.ts",
"upgrade": "npx npm-check -u",
"version": "yarn run build && yarn run changelog:update",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-http-proxy": "^1.6.6",
"@types/express-session": "^1.18.0",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^7.12.0",
"conventional-changelog-cli": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.44.0",
"nodemon": "^3.0.1",
"nyc": "^15.1.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/morgan": "^1.9.9",
"cors": "^2.8.5",
"discord.js": "^14.15.3",
"express": "^4.20.0",
"express-session": "^1.18.0",
"http-proxy-middleware": "^3.0.3",
"morgan": "^1.10.0",
"undici": "^6.19.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}