-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.55 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
{
"name": "lathyrus",
"version": "1.0.0",
"description": "",
"private": "true",
"scripts": {
"test": "jest --watch",
"build": "webpack --mode production --config webpack.prod.js",
"serve": "node server.js",
"start": "webpack serve --open --config webpack.dev.js",
"analyze": "FILENAME=\"lathyrus-$(date +%Y%m%d%k%M%S).stats.json\"; webpack --mode production --config webpack.prod.js --profile --json > \"${FILENAME}\" && webpack-bundle-analyzer \"${FILENAME}\" build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.3.1",
"babel-loader": "^9.1.0",
"babel-plugin-lodash": "^3.3.4",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
"express": "^4.18.2",
"html-webpack-plugin": "^5.5.0",
"image-minimizer-webpack-plugin": "^3.8.1",
"jest": "^29.3.1",
"mini-css-extract-plugin": "^2.7.2",
"postcss": "^8.4.20",
"postcss-loader": "^7.0.2",
"react-refresh": "^0.14.0",
"style-loader": "^3.3.1",
"svgo": "^3.0.2",
"tailwindcss": "^3.2.4",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-inlinesvg": "^3.0.1"
}
}