-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) Β· 2.52 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
{
"name": "prutkowski.dev",
"description": "Piotr Rutkowski",
"version": "2.0.0",
"author": "Piotr Rutkowski",
"engines": {
"node": "^14"
},
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.12.16",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.11.2",
"axios": "^0.21.1",
"babel-plugin-styled-components": "^1.12.0",
"dayjs": "^1.9.6",
"framer-motion": "^4.1.3",
"github-linguist-colours": "^1.1.1",
"mdi-material-ui": "^6.15.0",
"next": "^12.1.6",
"node-forge": "^0.10.0",
"parcel-bundler": "^1.12.4",
"postcss": "^8.2.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-ga": "^3.2.1",
"react-ga4": "^1.0.4",
"react-helmet": "6.1.0",
"react-icons": "^3.10.0",
"react-intersection-observer": "^8.31.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"styled-components": "^5.2.1",
"swiper": "^8.1.5",
"wow.js": "^1.2.2",
"xml-js": "^1.6.11"
},
"license": "MIT",
"scripts": {
"analyze:lint": "eslint --ext .tsx --ext .ts .",
"analyze:prettier": "prettier --list-different \"**/*.{css,js,jsx,json,md,tsx,ts}\"",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"fix:lint": "eslint --ext .tsx --ext .ts . --fix",
"fix:prettier": "prettier --write \"**/*.{css,js,jsx,json,md,tsx,ts}\"",
"fix": "npm run fix:lint && npm run fix:prettier",
"build": "next build",
"develop": "next dev",
"dev": "next dev",
"start": "next start",
"new:page": "plop --generate-page",
"new:component": "plop --generate-component",
"new:section": "plop --generate-section"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^3.0.0",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"autoprefixer": "10.1.0",
"babel-eslint": "10.1.0",
"cssnano": "4.1.10",
"eslint": "7.2.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.1.0",
"eslint-loader": "3.0.4",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"plop": "^2.7.4",
"postcss-preset-env": "^6.7.0",
"prettier": "2.0.5",
"typescript": "^4.2.3",
"yargs": "^17.0.1"
}
}