-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.52 KB
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
{
"name": "app",
"private": true,
"description": "The main application",
"version": "1.0.0",
"author": "Flexera, Dramba Victor",
"dependencies": {
"@fortawesome/fontawesome-free": "^7.2.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"elkjs": "^0.11.1",
"file-loader": "^6.2.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-is": "^19.2.4",
"react-router": "^7.13.1",
"react-router-dom": "^7.13.2",
"svg-editor-tools": "github:dvictor/svg-editor-tools#1.0.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.26.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.1",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/react-syntax-highlighter": "^15.5.13",
"babel-loader": "^10.1.1",
"css-loader": "^7.1.4",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.6",
"react-refresh": "^0.18.0",
"style-loader": "^4.0.0",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3"
},
"scripts": {
"build": "NODE_ENV=production webpack",
"build:static": "NODE_ENV=production webpack --config webpack.config.static.js",
"start": "webpack-dev-server",
"watch": "NODE_ENV=production webpack -w",
"clean": "rm -f dist/*"
}
}