forked from bucko13/fee-alerts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.64 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": "with-mysql",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"migrate": "node scripts/migrate-db.js",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"test": "jest",
"test-all": "yarn lint && yarn type-check && yarn test"
},
"dependencies": {
"@babel/preset-env": "^7.13.10",
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@prisma/client": "^2.18.0",
"aws-sdk": "^2.863.0",
"axios": "^0.21.1",
"bad-words": "^3.0.4",
"clsx": "^1.1.1",
"dotenv": "^8.2.0",
"next": "latest",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-loading-skeleton": "^2.1.1",
"serverless-mysql": "^1.5.4",
"swr": "^0.3.9",
"uuid": "^8.3.2",
"validator": "^13.5.2"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.6",
"@types/react": "^16.9.55",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"jest": "^26.6.3",
"postcss-flexbugs-fixes": "4.2.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"prisma": "2.18.0",
"tailwindcss": "^1.7.4",
"typescript": "^4.2.3"
},
"license": "MIT"
}