-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.74 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
65
66
{
"name": "azure-starter",
"version": "0.0.0",
"private": true,
"bin": {
"azure-starter": "./bin/index.js"
},
"scripts": {
"test": "export NODE_ENV=test && mocha --recursive --require test/helpers",
"dev": "nodemon ./bin/www",
"start": "node ./bin/www",
"css": "postcss css/tailwind.css -o public/css/tailwind.css"
},
"dependencies": {
"accounting": "^0.4.1",
"argon2": "^0.28.5",
"axios": "^0.21.2",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"connect-redis": "^6.1.3",
"consola": "^2.11.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "~3.1.7",
"express": "~4.16.0",
"express-flash": "^0.0.2",
"express-session": "^1.17.0",
"http-errors": "~1.6.2",
"ioredis": "^5.0.4",
"markdown-it": "^12.3.2",
"moment": "^2.24.0",
"morgan": "~1.9.0",
"nodemailer": "^6.6.1",
"nodemon": "^2.0.3",
"passport": "^0.4.1",
"passport-github2": "^0.1.11",
"passport-google-oauth2": "^0.2.0",
"passport-local": "^1.0.0",
"pg": "^8.7.3",
"request": "^2.88.2",
"sequelize": "^6.17.0",
"shortid": "^2.2.16",
"sqlite3": "^5.1.7",
"uuid": "^3.4.0"
},
"devDependencies": {
"autoprefixer": "^9.7.4",
"mocha": "^9.2.2",
"postcss-cli": "^7.1.0",
"tailwindcss": "^1.2.0"
},
"azure": {
"resourceGroup": "rough-cloud-91",
"appName": "rough-cloud-91-web",
"location": "westus",
"planName": "rough-cloud-91-web-plan",
"runtime": "NODE|10.14",
"deployUser": "rough-cloud-91-web-deployer",
"dbServerName": "rough-cloud-91-pg",
"dbUser": "admin_937",
"webSku": "B1",
"dbSku": "B_Gen5_1",
"siteUrl": "https://rough-cloud-91-web.azurewebsites.net"
}
}