-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.79 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
{
"name": "portfolio",
"version": "1.1.0",
"private": true,
"homepage": "https://dallasopelt.dev/",
"dependencies": {
"@loadable/component": "^5.13.2",
"gatsby": "^2.24.57",
"gatsby-plugin-gtag": "^1.0.13",
"gatsby-plugin-manifest": "^2.4.28",
"gatsby-plugin-offline": "^3.2.27",
"gatsby-plugin-sharp": "^2.6.35",
"gatsby-source-filesystem": "^2.3.29",
"gatsby-transformer-sharp": "^2.5.14",
"react": "^16.13.1",
"react-axe": "^3.5.3",
"react-dom": "^16.13.1",
"react-spring": "^9.0.0-rc.3",
"styled-components": "^5.2.0",
"typescript": "^3.9.7"
},
"scripts": {
"clean": "gatsby clean",
"debug": "npm i --no-save && npm run clean && npm run develop",
"develop": "gatsby develop",
"deploy": "npm run ghpages",
"ghpages": "gh-pages -b master -d public -t",
"build": "gatsby build",
"serve": "gatsby serve",
"build:serve": "npm run build && npm run serve",
"lint:ts": "eslint './src/**/*.{ts,tsx}'",
"lint:ts:fix": "npm run lint:ts -- --fix"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/loadable__component": "^5.13.0",
"@types/react": "^16.9.49",
"@types/react-axe": "^3.1.0",
"@types/react-dom": "^16.8.5",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-yaml": "^0.5.0",
"eslint-plugin-yml": "^0.14.0",
"gh-pages": "^2.0.1",
"prettier": "^1.18.2"
}
}