-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.46 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": "lizmacleanio",
"version": "1.0.0",
"description": "Personal Site",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"start": "webpack serve --open --config webpack.dev.js",
"lint": "eslint ./app",
"test": "npx jest --watch",
"lint:ci": "eslint ./app --max-warnings=0",
"test:ci": "npx jest"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"esmodules": true
}
}
],
[
"@babel/preset-react",
{
"runtime": "automatic"
}
],
"@babel/preset-typescript"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/lizziemac/lizmacleanio.git"
},
"keywords": [],
"author": "Liz MacLean",
"license": "ISC",
"bugs": {
"url": "https://github.com/lizziemac/lizmacleanio/issues"
},
"homepage": "https://github.com/lizziemac/lizmacleanio#readme",
"dependencies": {
"framer-motion": "^6.2.8",
"i18next": "^21.8.0",
"i18next-browser-languagedetector": "^6.1.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-i18next": "^11.16.9",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^14.0.4",
"@types/jest": "^27.4.1",
"@types/react": "^17.0.40",
"@types/react-dom": "^17.0.13",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^8.12.0",
"eslint-plugin-i18next": "^5.1.2",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-styled-components-a11y": "^0.0.34",
"eslint-webpack-plugin": "^3.1.1",
"html-minimizer-webpack-plugin": "^3.5.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"react-router-dom": "^6.2.2",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.2",
"webpack": "^5.97.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
}
}