-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "scriptified",
"version": "2.3.0",
"private": true,
"license": "(MIT OR Apache-2.0)",
"engines": {
"node": "20.x"
},
"scripts": {
"dev": "next dev",
"build": "node scripts/purgableCSSGenerator.js && next build",
"deploy": "yarn build && next export",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"email_issue": "node scripts/issueEmailGenerator.js --issueNumber"
},
"dependencies": {
"@svgr/webpack": "5.4.0",
"@vercel/analytics": "0.1.6",
"autoprefixer": "10.4.0",
"axios": "0.21.2",
"glob": "7.1.6",
"lodash": "4.17.21",
"next": "13.1.2",
"next-pwa": "3.1.5",
"postcss": "8.4.4",
"postcss-import": "12.0.1",
"prism-react-renderer": "1.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "5.0.3",
"react-player": "2.6.1",
"sharp": "0.30.7",
"simple-oauth2": "5.0.0",
"tailwindcss": "3.1.6"
},
"devDependencies": {
"@types/gtag.js": "0.0.4",
"@types/node": "14.6.3",
"@types/react": "17.0.3",
"@types/simple-oauth2": "^5.0.7",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"babel-plugin-inline-react-svg": "1.1.1",
"command-line-args": "5.1.3",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-next": "13.1.2",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.0",
"prettier": "2.1.1",
"typescript": "4.3.5"
}
}