-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 2.11 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
{
"name": "qbo-importer",
"version": "1.0.0",
"description": "**Quickly sync your Stripe transactions with Quick Books Online.**",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"npm run dev:styles\" \"npm run dev:client\" \"npm run dev:server\" \"npm run worker\"",
"worker": "celery -A stripe2qbo.workers.sync_worker worker",
"dev:styles": "npx tailwindcss -i client/index.css -o static/index.css --watch",
"dev:client": "esbuild --define:process.env.HOST=\\\"localhost:8000\\\" --define:process.env.SSL=false ./client/index.tsx --bundle --minify --sourcemap --target=es2015 --outfile=static/index.js --watch",
"dev:server": "python -m uvicorn stripe2qbo.api.app:app --reload",
"build": "npm run build:styles && npm run build:client",
"build:styles": "npx tailwindcss -i client/index.css -o static/index.css",
"build:client": "esbuild --define:process.env.HOST=\\\"$HOST\\\" --define:process.env.SSL=$SSL ./client/index.tsx --bundle --minify --sourcemap --target=es2015 --outfile=static/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@mui/x-data-grid": "^6.13.0",
"@reduxjs/toolkit": "^1.9.5",
"formik": "^2.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.2",
"react-responsive": "^9.0.2",
"react-router": "^6.15.0",
"react-router-dom": "^6.15.0",
"yup": "^1.2.0"
},
"devDependencies": {
"@types/node": "^20.7.0",
"@types/react-dom": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"concurrently": "^8.2.1",
"esbuild": "^0.19.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
}
}