-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.79 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
{
"name": "discord-bot",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Vydia/discord-bot.git",
"author": "dannyvassallo <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint \"**/*.{ts,tsx}\" --quiet",
"lint:fix": "yarn lint --fix",
"test": "DEBUG_PRINT_LIMIT=10000 jest",
"test:watch": "yarn test --watchAll"
},
"husky": {
"hooks": {
"pre-push": "yarn lint:fix && yarn test && yarn build"
}
},
"dependencies": {
"autoprefixer": "^10.1.0",
"discord.js": "^12.5.1",
"firebase": "^8.2.3",
"invariant": "^2.2.4",
"load-script": "^1.0.0",
"luxon": "^1.25.0",
"next": "10.0.0",
"postcss": "^8.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-firebase-hooks": "^2.2.0",
"react-toast-notifications": "^2.4.0",
"tailwindcss": "^2.0.2"
},
"devDependencies": {
"@testing-library/dom": "^7.29.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"@types/invariant": "^2.2.35",
"@types/jest": "^26.0.19",
"@types/luxon": "^1.25.0",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/youtube": "^0.0.41",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.16.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"gray-matter": "^4.0.2",
"husky": "^4.3.8",
"jest": "^26.6.3",
"remark-highlight.js": "^6.0.0",
"remark-html": "^13.0.1",
"remark-parse": "^9.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"unified": "^9.2.0",
"uuid": "^8.3.2"
}
}