-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.6 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "audreyasked",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node dist/index.js",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"lint": "next lint",
"build-types": "tsc --noEmit --pretty"
},
"dependencies": {
"@headlessui/react": "^1.4.3",
"@heroicons/react": "^1.0.5",
"@next-auth/prisma-adapter": "^1.0.1",
"@nivo/bar": "^0.79.1",
"@nivo/core": "^0.79.0",
"@prisma/client": "3.8.1",
"@types/canvas-confetti": "^1.4.2",
"@types/mjml-react": "^2.0.3",
"@types/nodemailer": "^6.4.4",
"@types/react-dnd-multi-backend": "^6.0.1",
"@types/ws": "^8.2.2",
"axios": "^0.25.0",
"canvas-confetti": "^1.4.0",
"clsx": "^1.1.1",
"immutability-helper": "^3.1.1",
"mjml": "^4.12.0",
"mjml-react": "^2.0.3",
"next": "^12.1.0",
"next-auth": "^4.3.2",
"next-seo": "^4.28.1",
"nodemailer": "^6.7.2",
"prisma": "^3.8.1",
"react": "^17.0.2",
"react-dnd": "^15.1.1",
"react-dnd-html5-backend": "^15.1.2",
"react-dnd-multi-backend": "^6.0.2",
"react-dnd-touch-backend": "^15.1.1",
"react-dom": "^17.0.2",
"react-spinners": "^0.11.0",
"react-tooltip": "^4.2.21",
"react-use-websocket": "^3.0.0",
"sharp": "^0.30.1",
"styled-jsx-plugin-postcss": "^4.0.1",
"tailwind-merge": "^1.1.1",
"tailwindcss-named-groups": "^0.0.5",
"ws": "^8.5.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.0.7",
"@types/node": "^17.0.4",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"autoprefixer": "^10.4.0",
"cross-env": "^7.0.3",
"cssnano": "^5.0.14",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-next": "^12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.7",
"ts-node": "^10.5.0",
"typescript": "^4.5.4"
}
}