forked from internet-development/nextjs-sass-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 870 Bytes
/
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
{
"name": "sasha.page",
"description": "Fueling the next wave of visionary entrepreneurs.",
"engines": {
"node": ">=18"
},
"license": "MIT",
"version": "1.0.0",
"scripts": {
"dev": "next -p 10000",
"build": "next build",
"start": "PORT=10000 next start",
"script": "ts-node -O '{\"module\":\"commonjs\"}' scripts/index.js",
"lint": "next lint"
},
"dependencies": {
"dotenv": "^16.3.1",
"js-cookie": "^3.0.5",
"knex": "^3.1.0",
"next": "14.0.4",
"pg": "^8.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rss-parser": "^3.13.0",
"sass": "1.69.5",
"universal-cookie": "^7.1.0"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"eslint": "8.56.0",
"eslint-config-next": "14.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}