-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.59 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
{
"name": "caiogondim.com",
"version": "1.0.0",
"description": "caiogondim.com",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"now-build": "next build && next export -o dist",
"start": "next start",
"lint": "eslint --fix 'pages/**/*.js' 'components/**/*.js' 'util/**/*.js' 'next.config.js' 'now.json' --ignore-path util/list-of-posts.js",
"update-list-of-posts": "./scripts/update-list-of-posts",
"deploy": "now",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caiogondim/caiogondim.com.git"
},
"keywords": [],
"author": "Caio Gondim",
"license": "MIT",
"bugs": {
"url": "https://github.com/caiogondim/caiogondim.com/issues"
},
"homepage": "https://github.com/caiogondim/caiogondim.com#readme",
"dependencies": {
"next": "9.4.1",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@babel/generator": "7.9.6",
"@babel/parser": "7.9.6",
"@babel/traverse": "7.9.6",
"@emotion/babel-preset-css-prop": "10.0.27",
"@emotion/core": "10.0.28",
"@mdx-js/loader": "1.6.1",
"@mdx-js/mdx": "1.6.1",
"@next/mdx": "9.4.1",
"babel-eslint": "10.1.0",
"eslint": "7.0.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-emotion": "10.0.27",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-json": "2.1.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-standard": "4.0.1",
"tubo": "1.1.3",
"unist-util-visit": "1.4.0"
}
}