-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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
{
"name": "flyingnotes",
"version": "1.0.0",
"author": "Almog Gabay",
"license": "ISC",
"scripts": {
"start": "webpack serve --mode development",
"serve": "serve build",
"test": "jest",
"build": "webpack --mode production"
},
"dependencies": {
"@babel/runtime": "^7.17.8",
"clsx": "^1.1.1",
"firebase": "^9.6.10",
"frontend-essentials": "^6.1.0",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-error-boundary": "^3.1.4",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.2.2",
"react-textarea-autosize": "^8.3.3",
"use-click-outside": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@svgr/webpack": "^6.2.1",
"@testing-library/react": "^13.1.1",
"babel-jest": "^28.0.3",
"babel-loader": "^8.2.4",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^8.12.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.0.3",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.4.12",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.3",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"serve": "^13.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}