-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.58 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
{
"name": "back-end",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node build/init.js",
"build:server": "babel src -d build && copyfiles -u 1 src/templates/*.ejs build",
"dev": "nodemon --exec babel-node src/init.js",
"sync-dotenv-slack": "envbot"
},
"envbot": {
"channel": "back-end-dotenv",
"include": [
"*",
"!SECRET"
]
},
"husky": {
"hooks": {
"pre-push": "npm run sync-dotenv-slack"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/2023-2-WINK-Project-Team1/back-end.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/2023-2-WINK-Project-Team1/back-end/issues"
},
"homepage": "https://github.com/2023-2-WINK-Project-Team1/back-end#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"csv-parser": "^3.0.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"gridfs-stream": "^1.1.1",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "4.4",
"mongoose": "^8.0.1",
"multer": "^1.4.2",
"multer-gridfs-storage": "^5.0.2",
"nodemailer": "^6.9.8",
"regenerator-runtime": "^0.14.1",
"sharp": "^0.30.7"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.3",
"copyfiles": "^2.4.1",
"nodemon": "^3.0.1",
"sync-dotenv-slack": "^0.1.0"
}
}