-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "getting-started-with-open-source",
"version": "0.1.0",
"description": "A presentation on getting started with Open Source",
"private": true,
"author": {
"name": "Monica Powell",
"email": "[email protected]",
"url": "https://aboutmonica.com/"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"format": "prettier --write '**/*.{js,jsx}'",
"start": "next start",
"export": "next export"
},
"dependencies": {
"@mdx-js/loader": "^1.5.8",
"@next/mdx": "^9.3.4",
"framer-motion": "^1.10.3",
"next": "9.3.4",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-swipeable": "^5.5.1",
"react-syntax-highlighter": "^12.2.1",
"styled-components": "^5.1.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-styled-components": "^1.10.7",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"prettier": "^2.0.4"
}
}