This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.08 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "silvy",
"version": "1.0.0",
"description": "Web app for building strats for XIV",
"main": "index.js",
"author": "Cecilia Sanare <ceci@sanare.dev>",
"license": "GPL-3.0",
"scripts": {
"postinstall": "netlify link --name rain-silvy",
"start": "next dev",
"start:prod": "next start",
"build:prisma": "prisma generate",
"build:next": "next build",
"build": "npm run build:prisma && npm run build:next",
"lint": "eslint src/**/*.tsx",
"pull": "netlify env:list --json > .env.json",
"test": "jest --coverage=false",
"test:coverage": "npm run build:prisma && jest --coverage",
"deploy:database": "npm run deploy:database:live && prisma generate",
"deploy:database:live": "prisma db push"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.4.0",
"@reduxjs/toolkit": "^1.9.0",
"classnames": "^2.3.2",
"dotenv-json": "^1.0.0",
"mobile-detect": "^1.4.5",
"next": "^13.0.3",
"next-auth": "^4.16.4",
"prisma": "^4.4.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^4.6.0",
"react-polymorphic-types": "^2.0.0",
"react-redux": "^8.0.5",
"swr": "^2.1.5",
"wretch": "^2.1.5"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/chance": "^1.1.3",
"@types/jest": "^29.2.2",
"@types/node": "^20.3.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"chance": "^1.1.9",
"convert-json-env": "^1.1.2",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.10",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"netlify-cli": "^15.4.1",
"sass": "^1.56.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}