-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 822 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 822 Bytes
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
{
"name": "www-react-postgres",
"license": "MIT",
"version": "0.0.4",
"scripts": {
"dev": "next -p 3005",
"build": "next build",
"start": "NODE_ENV=production next start",
"script": "ts-node -O '{\"module\":\"commonjs\"}' scripts/index.js",
"production-script": "NODE_ENV=production ts-node -O '{\"module\":\"commonjs\"}' scripts/index.js"
},
"dependencies": {
"bcrypt": "^5.0.1",
"dotenv": "^16.0.1",
"googleapis": "^103.0.0",
"jsonwebtoken": "^8.5.1",
"knex": "^2.1.0",
"next": "12.1.6",
"pg": "^8.7.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "1.52.3",
"universal-cookie": "^4.0.4"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}