-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
49
50
51
52
53
54
55
56
{
"name": "expenseus-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"test:api": "jest --config=api-jest.config.js",
"test:ui": "jest --config=react-jest.config.js",
"analyze": "ANALYZE=true yarn build",
"ddb:setup": "ts-node ./ddb/createTestTable.ts"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.254.0",
"@aws-sdk/lib-dynamodb": "^3.254.0",
"@next/bundle-analyzer": "^12.3.1",
"@nivo/bar": "^0.80.0",
"@nivo/core": "^0.80.0",
"@testing-library/dom": "^8.13.0",
"next": "^12.1.6",
"next-auth": "^4.19.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.31.2",
"swr": "^1.3.0",
"temporal-polyfill": "^0.0.7",
"ulid": "^2.3.0",
"uuid": "^8.3.2",
"zod": "^3.20.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/react": "^17.0.15",
"@types/uuid": "^8.3.1",
"autoprefixer": "^10.4.7",
"cross-fetch": "^3.1.4",
"dotenv": "^10.0.0",
"eslint": "7.32.0",
"eslint-config-next": "11.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "~27.5.1",
"msw": "^0.33.3",
"node-mocks-http": "^1.12.1",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.11",
"tailwindcss": "^3.0.24",
"ts-node": "^10.9.1",
"typescript": "^4.3.5"
}
}