-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "next-portfolio-v2",
"version": "2.0.0",
"description": "",
"private": true,
"main": "./src/server.js",
"scripts": {
"dev": "next ./src -p $PORT",
"apidev": "node ./src/server.js",
"build": "next build ./src",
"startproxy": "pgrep cloud_sql_proxy > /dev/null && cloud_sql_proxy -dir=$PROXY_SOCKET_DIR -instances=$CLOUD_SQL_INSTANCE &",
"start": "NODE_ENV=production node ./src/server.js"
},
"engines": {
"node": "10.15.3",
"npm": "6.13.6"
},
"keywords": [],
"author": "letanque",
"license": "ISC",
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"axios": "^0.21.2",
"bcrypt": "^3.0.8",
"body-parser": "^1.19.0",
"connect-ensure-login": "^0.1.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-webpack": "^1.7.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"helmet": "^3.21.2",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.9",
"next": "^11.1.3",
"next-compose-plugins": "^2.2.0",
"next-page-transitions": "^1.0.0-beta.2",
"node-sass": "^7.0.0",
"passport": "^0.4.1",
"passport-auth0": "^1.3.2",
"passport-local": "^1.0.0",
"pg": "^7.18.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-html-parser": "^2.0.2",
"react-icons": "^3.9.0",
"react-scroll": "^1.7.16",
"react-text-loop": "^2.3.0",
"simple-icons-react-component": "github:letanque/simple-icons-react-component#master",
"sqlite3": "^4.1.1",
"uid-safe": "^2.1.5"
}
}