-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.51 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
{
"name": "zephyr-node",
"version": "1.2.0",
"description": "Full stack productivity application where users can organize their notes, flashcards, to-dos, and reminders. Flashcards and reminders can be sent as text messages.",
"main": "server.js",
"contributors": [
{
"name": "Ana Arakaki",
"url": "https://github.com/aparakaki"
},
{
"name": "Chris Armendarez",
"url": "https://github.com/chrisArmo"
},
{
"name": "Kevin Do",
"url": "https://github.com/do-kevin"
},
{
"name": "Pauline Bantayan",
"url": "https://github.com/pauline-ann"
}
],
"scripts": {
"heroku-postbuild": "npm run build",
"railway:build": "cd client && yarn install && yarn build",
"railway:start": "node server.js",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\""
},
"license": "GNU GPLv3",
"dependencies": {
"axios": "0.18.0",
"bcryptjs": "2.4.0",
"body-parser": "^1.20.2",
"cookie-parser": "1.4.3",
"cors": "^2.8.5",
"cron": "1.5.0",
"dotenv": "^16.0.3",
"express": "4.16.3",
"express-session": "1.15.6",
"if-env": "1.0.4",
"moment": "2.22.2",
"moment-timezone": "0.5.23",
"mysql2": "^3.2.3",
"sequelize": "4.41.0",
"twilio": "3.23.2"
},
"devDependencies": {
"concurrently": "3.5.0",
"corepack": "^0.17.2",
"nodemon": "1.11.0"
}
}