-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "nextjs-sql-app",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"migrate:dev": "knex migrate:latest",
"migrate:production": "knex --env production migrate:latest",
"seed:dev": "knex seed:run",
"seed:production": "knex --env production seed:run",
"seed:production:post": "knex --env production seed:run --specific 02-post.js"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.0",
"@types/multer": "^1.4.4",
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"bulma": "^0.9.1",
"cloudinary": "^1.23.0",
"dotenv": "^8.2.0",
"js-cookie": "^2.2.1",
"knex": "^0.21.6",
"moment": "^2.29.1",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^4.0.0",
"next": "^9.5.3",
"next-connect": "^0.9.1",
"next-iron-session": "^4.1.9",
"pg": "^8.4.1",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-hook-form": "^6.8.6",
"react-loading-skeleton": "^2.1.1",
"sqlite3": "^5.0.0",
"swr": "^0.3.5"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/node": "^14.11.2",
"@types/react": "^16.9.50",
"sass": "^1.26.11",
"typescript": "^4.0.3"
}
}