-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.05 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
{
"name": "test",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build-paths": "node scripts/buildPaths.js",
"build": "npm run build-paths && tsc && next build && next export",
"start": "next start",
"lint": "next lint",
"deploy_w": "pnpm run build && rd -r output static && next export -o output && robocopy output static && python integration_script.py -d static",
"deploy_l": "pnpm run build && rm -rf output static && next export -o output && mv output static && python integration_script.py -d static"
},
"dependencies": {
"@headlessui/react": "^1.7.7",
"@heroicons/react": "^2.0.13",
"@reduxjs/toolkit": "^1.9.3",
"@tailwindcss/forms": "^0.5.3",
"@types/gestalt": "^101.0.0",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"axios": "^1.3.4",
"framer-motion": "^10.9.1",
"gestalt": "^101.3.0",
"gestalt-datepicker": "^101.3.0",
"isotope-layout": "^3.0.6",
"jsonwebtoken": "^9.0.0",
"next": "13.0.3",
"next-auth": "^4.20.1",
"next-auth-client": "^1.5.0",
"nprogress": "^0.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-grid-layout": "^1.3.4",
"react-hook-form": "^7.43.7",
"react-masonry-component": "^6.3.0",
"react-masonry-css": "^1.0.16",
"react-notifications": "^1.7.4",
"react-player": "^2.11.2",
"react-redux": "^8.0.5",
"react-spring": "^9.7.1",
"react-text-loop": "^2.3.0",
"react-tiktok-embed": "^1.0.0",
"react-toastify": "^9.1.1",
"react-transition-group": "^4.4.5",
"redux": "^4.2.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.2",
"swr": "^2.1.0",
"typescript": "4.8.4"
},
"devDependencies": {
"@types/isotope-layout": "^3.0.9",
"@types/jsonwebtoken": "^9.0.1",
"@types/nprogress": "^0.2.0",
"@types/react-grid-layout": "^1.3.2",
"@types/react-transition-group": "^4.4.5",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.21",
"sass": "^1.60.0",
"tailwindcss": "^3.2.4"
}
}