forked from IanMitchell/hackweek-discord-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "discord.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:ci": "npm run build && npm run build:cionly",
"build:cionly": "tsc --build ci",
"start": "next start",
"lint": "eslint ci components contexts hooks pages",
"lint:fix": "eslint ci components contexts hooks pages --fix",
"prettier": "prettier -c **/*.mdx",
"prettier:fix": "prettier --write **/*.mdx",
"test:links": "node dist/ci/checkLinks.js"
},
"engines": {
"node": "16.8.0"
},
"dependencies": {
"@headlessui/react": "^1.4.1",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^11.1.1",
"@tailwindcss/forms": "^0.3.3",
"@tailwindcss/typography": "^0.4.1",
"classnames": "^2.3.1",
"next": "^11.1.2",
"next-themes": "^0.0.15",
"parse-numeric-range": "^1.3.0",
"prism-react-renderer": "^1.2.1",
"prismjs": "^1.24.1",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@actions/core": "^1.5.0",
"@types/jsdom": "^16.2.13",
"@types/mdx-js__react": "^1.5.4",
"@types/react": "17.0.19",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"autoprefixer": "^10.3.4",
"chalk": "^4.1.2",
"eslint": "7.32.0",
"eslint-config-marine": "^9.0.6",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jsdom": "^17.0.0",
"postcss": "^8.3.6",
"prettier": "^2.3.2",
"prettier-plugin-tailwind": "^2.2.12",
"tailwindcss": "^2.2.9",
"typescript": "4.4.2"
},
"volta": {
"node": "16.8.0"
}
}