-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.2 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
{
"name": "portfolio",
"description": "My personal portfolio/website",
"author": {
"email": "evann.dreumont@gmail.com",
"name": "Evann DREUMONT",
"url": "https://evann-drmt.vercel.app/"
},
"license": "AGPL3.0",
"version": "0.1.0",
"private": true,
"dependencies": {
"node-sass": "5.0.0",
"nord": "^0.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-helmet-async": "^1.2.2",
"react-icons": "^4.3.1",
"react-intl": "^5.23.0",
"react-intl-cra": "^0.3.4",
"react-lottie": "^1.2.3",
"react-markdown": "^7.1.1",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-syntax-highlighter": "^15.4.5",
"rehype-katex": "^6.0.1",
"rehype-raw": "^6.1.0",
"remark-emoji": "^2.2.0",
"remark-gfm": "^1.0.0",
"remark-images": "^3.1.0",
"remark-math": "^5.1.1",
"web-vitals": "^2.1.2"
},
"scripts": {
"prestart": "node staticGenerator.js",
"start": "react-scripts start",
"prebuild": "node staticGenerator.js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"extract:messages": "react-intl-cra src/**/*.{js,jsx} -o src/i18n/messages/messages.json",
"manage:translations": "node ./translationRunner.js",
"analyze": "source-map-explorer 'build/static/js/*.js'"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.4.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"react-app-rewired": "^2.1.8",
"react-intl-translations-manager": "^5.0.3",
"shortid": "^2.2.16",
"source-map-explorer": "^2.5.2"
}
}