-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.62 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
{
"name": "humanityapi",
"version": "0.0.1",
"description": "Grabs data from the humanity api to make fast inputs to website",
"main": "main.js",
"type": "module",
"private": "true",
"scripts": {
"startProgram": "npm install && node ./server/index.js",
"start": "node ./server/index.js",
"devServe": "nodemon --watch server/index.js --watch server/api/dataHelper.js server/index.js",
"client": "esbuild --bundle --minify --target=ES6 --outfile=public/bundle.js client/app.jsx",
"devClient": "nodemon --watch client --exec ./node_modules/.bin/esbuild --bundle --sourcemap --target=ES6 --outfile=public/bundle.js client/app.jsx",
"devClientServe": "esbuild --servedir=public --bundle --sourcemap --target=ES6 --outfile=public/bundle.js client/app.jsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Tyler Marefke",
"license": "MIT",
"devDependencies": {
"esbuild": "^0.14.25",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"express": "^4.17.3",
"node-fetch": "^3.2.3",
"nodemon": "^2.0.15"
},
"dependencies": {
"@date-io/moment": "^2.13.1",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.1",
"@mui/material": "^5.6.1",
"@mui/x-date-pickers": "^5.0.0-alpha.2",
"axios": "^0.26.1",
"dotenv": "^16.0.0",
"moment": "^2.29.3",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}