-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
78 lines (78 loc) · 2.35 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "juliacon-webapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:export": "npm run build && next export",
"start": "next start",
"pre-commit": "lint-staged",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx --cache --max-warnings 0",
"postinstall": "husky install && husky install"
},
"sideEffects": [
"*.css"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "5.15.3",
"@fortawesome/free-solid-svg-icons": "5.15.3",
"@fortawesome/react-fontawesome": "0.1.14",
"@reach/tabs": "^0.15.2",
"@types/react-select": "^4.0.16",
"@types/react-youtube": "^7.6.2",
"@widgetbot/embed-api": "1.1.3",
"@widgetbot/react-embed": "1.4.0",
"apollo-datasource-rest": "0.14.0",
"apollo-server-micro": "2.25.2",
"aws-amplify": "4.3.46",
"cookie": "0.4.1",
"date-fns": "2.22.1",
"date-fns-tz": "^1.1.4",
"emotion": "^10.0.27",
"emotion-server": "^10.0.27",
"graphql-anywhere": "4.2.7",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^6.0.2",
"react-select": "^4.3.1",
"react-youtube": "^7.13.1",
"simple-oauth2": "4.2.0",
"vega": "^5.23.0",
"vega-embed": "^6.18.2",
"vega-lite": "^5.1.0"
},
"devDependencies": {
"@types/cookie": "0.4.0",
"@types/node": "15.14.0",
"@types/react": "17.0.13",
"@types/simple-oauth2": "4.1.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"babel-eslint": "^10.1.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"concurrently": "6.2.0",
"eslint": "^7.29.0",
"eslint-config-next": "^11.0.1",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.8.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "2.3.2",
"typescript": "^4.3.5"
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix --max-warnings 0",
"*.{js,jsx,ts,tsx,css,md,graphql}": "prettier --write"
}
}