-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.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
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
79
80
81
82
83
84
85
86
{
"name": "wati-admin-panel",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "npm run migrate:up && next dev",
"build": "next build",
"eu-build": "env-cmd -f ./.env-eu next build",
"start": "npm run migrate:up && next start",
"lint": "next lint",
"test": "jest --coverage",
"test:unit": "jest --config ./jest.unit.config.js",
"test:integration": "jest --config ./jest.integration.config.js",
"migrate:up": "ts-node migrations/index.ts up",
"migrate:status": "ts-node migrations/index.ts status",
"migrate:down": "ts-node migrations/index.ts down -l"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@google-cloud/bigquery": "^7.3.0",
"@mui/icons-material": "^5.15.3",
"@mui/material": "^5.11.13",
"@mui/x-data-grid": "^6.0.2",
"@mui/x-date-pickers": "^5.0.20",
"@types/node": "18.15.3",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"axios": "1.7.4",
"bcrypt": "^5.1.0",
"clsx": "^1.2.1",
"csv-parser": "^3.0.0",
"csv-write-stream": "^2.0.0",
"csv-writer": "^1.6.0",
"csvtojson": "^2.0.10",
"date-fns": "^2.30.0",
"dotenv": "^16.0.3",
"env-cmd": "^10.1.0",
"googleapis": "^128.0.0",
"inversify": "^7.1.0",
"jsonwebtoken": "^9.0.0",
"klona": "^2.0.6",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"mongo-migrate-ts": "^1.4.0",
"mongodb": "^5.1.0",
"mongoose": "7.8.4",
"mysql2": "^3.12.0",
"next": "15.5.15",
"qs": "^6.11.1",
"ramda": "^0.28.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-spinners": "^0.13.8",
"reflect-metadata": "^0.2.2",
"sass": "^1.59.3",
"ts-node": "^10.9.1",
"typescript": "5.0.2",
"uuid": "^9.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@jest/globals": "^29.6.1",
"@testing-library/react": "^14.0.0",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash": "^4.14.192",
"@types/luxon": "^3.3.0",
"@types/qs": "^6.9.7",
"@types/ramda": "^0.28.23",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-environment-node": "^29.6.1",
"mongodb-memory-server": "^8.13.0",
"prettier": "^2.8.5",
"ts-jest": "^29.1.1"
}
}