-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "myfa-website-backend",
"version": "1.0.0",
"description": "Backend for the website",
"main": "src/index.js",
"author": "Florian Adonis <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel src -d dist",
"start": "nodemon --exec babel-node src/index.js",
"serve": "npm run build && node dist/index.js"
},
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.4.2",
"@babel/runtime": "^7.7.2",
"@slack/web-api": "^5.13.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"contentful": "^7.14.4",
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fb": "^2.0.0",
"form-data": "^3.0.0",
"geoip-lite": "^1.4.1",
"jsonwebtoken": "^8.5.1",
"mailchimp-api-v3": "^1.13.1",
"mongoose": "^5.8.1",
"node-mailjet": "^3.3.1",
"sha.js": "^2.4.11",
"stripe": "^8.29.0",
"uuid": "^7.0.3"
},
"devDependencies": {
"@babel/node": "^7.7.4",
"nodemon": "^1.17.5"
}
}