-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.55 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.55 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
{
"name": "expense-reports",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"migrate:latest": "node_modules/knex/bin/cli.js migrate:latest",
"migrate:rollback": "node_modules/knex/bin/cli.js migrate:rollback",
"migrate:down": "node_modules/knex/bin/cli.js migrate:down",
"migrate:up": "node_modules/knex/bin/cli.js migrate:up",
"seed": "node_modules/knex/bin/cli.js seed:run",
"test": "jest",
"test:watch": "jest --watch",
"prettier": "prettier . --check",
"prettier:fix": "npx prettier --write ."
},
"dependencies": {
"@auth0/nextjs-auth0": "^3.5.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"dotenv": "^16.4.5",
"knex": "^3.1.0",
"next": "^14.2.16",
"pg": "^8.13.0",
"react": "^18",
"react-datepicker": "^7.5.0",
"react-dom": "^18",
"server-only": "^0.0.1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"eslint": "^8.57.1",
"eslint-config-next": "14.2.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^25.0.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.14",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"whatwg-fetch": "^3.6.20"
}
}