generated from mhsalves/next-ghpages-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.74 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
{
"name": "mhsalves.github.io",
"version": "0.1.0",
"description": "My Website Portifolio in React",
"scripts": {
"dev": "next src",
"build": "next build src",
"start": "next start src",
"export": "next export -o docs/ src",
"eslint": "eslint --ext .jsx,.js ./src",
"test": "jest --config .jest/config.js",
"release:netlify": "npm run build && npm run export",
"release:gp:setup": "touch docs/.nojekyll && touch docs/CNAME && echo \"matheusalves.dev\" >> docs/CNAME",
"release:gp:commit": "git add docs/ && git commit -m \"release: new features\"",
"release:gp": "npm run build && npm run export && npm run release:gp:setup && npm run release:gp:commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mhsalves/mhsalves.github.io.git"
},
"keywords": [
"my",
"website",
"portifolio"
],
"author": "Matheus Alves",
"license": "MIT",
"bugs": {
"url": "https://github.com/mhsalves/mhsalves.github.io/issues"
},
"homepage": "https://github.com/mhsalves/mhsalves.github.io#readme",
"dependencies": {
"next": "12.0.9",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-lazy": "1.1.0",
"styled-components": "5.2.1"
},
"devDependencies": {
"@babel/eslint-parser": "7.16.5",
"babel-jest": "26.6.3",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.15.1",
"eslint": "8.8.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.0.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"jest": "26.6.3",
"jest-styled-components": "7.0.3",
"react-test-renderer": "16.11.0"
}
}