-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 855 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
{
"name": "ntu-line-bot",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=development nodemon start app.js",
"prod": "NODE_ENV=production node app.js",
"seeder": "node restaurantsSeeder.js"
},
"author": "Max Yi-Hsun Chou <[email protected]>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"config": "^3.0.1",
"dotenv": "^10.0.0",
"linebot": "^1.4.1",
"module-alias": "^2.2.2",
"pg": "^8.6.0",
"sequelize": "^6.6.2"
},
"devDependencies": {
"nodemon": "^2.0.7",
"sequelize-cli": "^6.2.0"
},
"_moduleAliases": {
"@utils": "./utils",
"@services": "./services",
"@data": "./data",
"@config": "./config/default",
"@models": "./database/models"
}
}