-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.43 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
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
{
"homepage": "https://calebrose.io/simsn-interface/",
"name": "interface",
"version": "1.0.0",
"private": true,
"description": "Web Interface for the SimSN Community",
"browser": "index.html",
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"gh-pages": "^6.3.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.1",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^5.3.10",
"url-loader": "^4.1.0",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"bootstrap-icons": "^1.8.1",
"file-saver": "^2.0.5",
"firebase": "^11.3.1",
"firebase-admin": "^13.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-infinite-scroll-component": "^6.1.0",
"react-redux": "^9.2.0",
"react-responsive": "^9.0.0-beta.5",
"react-router-dom": "^7.1.5",
"react-scripts": "^5.0.1",
"react-select": "^5.3.0",
"redux": "^5.0.1",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"webpack": "^5.98.0"
},
"scripts": {
"predeploy": "npm run clean && npm run build",
"start": "webpack serve --mode development --config webpack-config.js",
"build": "webpack --mode production --config webpack-config.js",
"deploy": "gh-pages -d public",
"clean": "rm -rf public/*",
"webpack": "webpack --config webpack-config.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"watch": "webpack --watch"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/CalebRose/simfba-interface.git"
},
"keywords": [],
"author": "Caleb T. Rose",
"license": "ISC",
"bugs": {
"url": "https://github.com/CalebRose/simfba-interface/issues"
}
}