-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "next-learning",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "rm -rf .next && next build",
"build-command": "tsc product-process.ts --experimentalDecorators true --outDir ./build",
"start": "next start",
"lint": "next lint",
"update-products": "node build/product-process.js",
"prettier": "prettier --write ./**/*.{js,json,ts,tsx}"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@nextui-org/react": "^1.0.0-beta.10",
"cookies": "^0.8.0",
"cookies-next": "^2.1.1",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"googleapis": "^100.0.0",
"http2": "^3.3.7",
"iron-session": "^6.2.0",
"mongoose": "^6.5.1",
"next": "12.1.6",
"nodemailer": "^6.7.8",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-infinite-scroll-component": "^6.1.0",
"react-toastify": "^9.0.8",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"tsyringe": "^4.7.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.45",
"@types/nodemailer": "^6.4.5",
"@types/react": "^18.0.15",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"prettier": "2.7.1",
"sass": "^1.54.4",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}