-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.99 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "alampros-resume-site",
"private": true,
"description": "Resume site",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "yarn build-pdf && yarn build-vcard && yarn build-www",
"build-www": "gatsby build",
"build-pdf": "ts-node -P tsconfig.json scripts/make-pdf",
"build-vcard": "ts-node -P tsconfig.json scripts/make-vcard",
"develop": "gatsby develop -p 3000 -H 0.0.0.0",
"develop-pdf": "nodemon -e ts,tsx,js,jsx,json --exec yarn build-pdf",
"develop-vcard": "nodemon -e ts,tsx,js,jsx,json --exec yarn build-vcard",
"start": "yarn develop",
"serve": "gatsby serve -p 3001 -H 0.0.0.0",
"preserve": "yarn build",
"test": "yarn lint && yarn typecheck",
"typecheck": "tsc",
"lint": "yarn lint-styles && yarn lint-scripts",
"lint-styles": "stylelint \"src/**/*.?(s)css\"",
"lint-scripts": "eslint --ext tsx,ts,js,jsx src scripts",
"tidy": "eslint --ignore-pattern '!.eslintrc.js' --fix --ext ts --ext tsx --ext js --ext jsx .eslintrc.js src",
"clean": "git clean -xfd -i -e node_modules ."
},
"devDependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@react-pdf/renderer": "^2.0.19",
"@tippyjs/react": "^4.2.0",
"@types/classnames": "^2.2.11",
"@types/react": "^17.0.0",
"@types/react-helmet": "^6.1.0",
"@types/react-toggle": "^4.0.2",
"@types/recharts": "^1.8.18",
"autoprefixer": "^10.2.0",
"clsx": "^1.1.1",
"eslint": "^7.17.0",
"eslint-config-vectron": "^3.0.0",
"framer-motion": "^4.1.17",
"gatsby": "^3.14.0",
"gatsby-plugin-dts-css-modules": "^2.1.1",
"gatsby-plugin-fullstory": "^3.14.0",
"gatsby-plugin-gtag": "^1.0.13",
"gatsby-plugin-manifest": "^3.14.0",
"gatsby-plugin-netlify": "^3.14.0",
"gatsby-plugin-offline": "^4.14.0",
"gatsby-plugin-postcss": "4.14.0",
"gatsby-plugin-react-helmet": "^4.14.0",
"gatsby-plugin-resolve-src": "^2.1.0",
"gatsby-plugin-typescript": "^3.14.0",
"gatsby-theme-material-ui": "^2.0.1",
"git-rev-sync": "^3.0.1",
"globby": "^12.0.2",
"js-beautify": "^1.13.0",
"module-alias": "^2.2.1",
"nodemon": "^2.0.7",
"postcss": "^8.2.10",
"postcss-nested": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-flip-toolkit": "^7.0.13",
"react-helmet": "^6.1.0",
"react-icons": "^4.1.0",
"react-qr-svg": "^2.3.0",
"react-toggle": "^4.0.2",
"recharts": "^2.1.4",
"stylelint": "^13.8.0",
"stylelint-config-rational-order": "^0.1.1",
"stylelint-config-standard": "^22.0.0",
"tippy.js": "^6.2.7",
"ts-node": "^10.2.1",
"typescript": "~4.4.3",
"typescript-plugin-css-modules": "^3.1.0",
"utility-types": "^3.10.0",
"vcards-js": "^2.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/alampros/resume-site"
},
"bugs": {
"url": "https://github.com/alampros/resume-site/issues"
},
"_moduleDirectories": [
"src"
]
}