-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "crobot",
"version": "1.0.0",
"description": "The new CRObot, now in TypeScript ✨",
"main": "index.js",
"license": "GPL-3.0",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf dist",
"build": "tsc",
"start": "node dist/index.js",
"dev": "npm run build && npm run start",
"lint": "eslint src && prettier . -c",
"lint:fix": "eslint src --fix && prettier . -w"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "https://gitlab.cecs.anu.edu.au/cssa/crobot"
},
"dependencies": {
"@octokit/rest": "^19.0.11",
"axios": "^1.2.2",
"date-fns": "^2.30.0",
"discord.js": "^14.14.1",
"dotenv": "^16.4.4",
"express": "^4.18.2",
"rimraf": "^5.0.1"
},
"devDependencies": {
"@types/date-fns": "^2.6.0",
"@types/express": "^4.17.21",
"@types/node": "^20.11.17",
"@types/sharp": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^51.0.1",
"pre-commit": "^1.2.2",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
}
}