-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
73 lines (73 loc) · 2.19 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
67
68
69
70
71
72
73
{
"name": "rsvp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run build-babel && npm run copy",
"build-babel": "babel -d ./build ./src -s",
"copy": "babel src --out-dir ./build --copy-files",
"clean": "rm -rf .nyc_output build coverage && mkdir build",
"dev": "cross-env DEBUG=dev nodemon -r dotenv/config --exec babel-node src/index.js",
"format": "prettier --write --cache \"**/*.{js,md}\"",
"lint": "eslint src --ext js,md --ignore-path .gitignore --fix --cache --report-unused-disable-directives",
"prepare": "lefthook install",
"start": "node ./build/index.js",
"test": "node ./test/e2e/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sliit-foss/rsvp.git"
},
"author": "SLIIT FOSS Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/sliit-foss/rsvp/issues"
},
"homepage": "https://github.com/sliit-foss/rsvp#readme",
"dependencies": {
"@babel/register": "7.12.10",
"@babel/runtime": "7.12.5",
"cookie-parser": "1.4.5",
"core-js": "3.15.1",
"cors": "2.8.5",
"cross-env": "7.0.3",
"express": "4.17.1",
"express-session": "1.17.2",
"firebase-admin": "9.11.0",
"handlebars": "4.7.7",
"install": "0.13.0",
"joi": "17.6.0",
"jsonwebtoken": "8.5.1",
"memorystore": "1.6.6",
"mongoose": "5.11.7",
"mongoose-data-seed": "2.1.6",
"morgan": "1.10.0",
"nodemailer": "6.7.4",
"passport": "0.4.1",
"passport-jwt": "4.0.0",
"passport-local": "1.0.0",
"passport-local-mongoose": "6.1.0",
"uuid": "8.3.2",
"winston": "3.3.3"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.10",
"@babel/node": "7.12.10",
"@babel/preset-env": "7.12.10",
"@commitlint/cli": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@sliit-foss/eslint-config-internal": "1.1.4",
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"dotenv": "16.0.1",
"eslint": "8.45.0",
"eslint-plugin-import": "2.27.5",
"nodemon": "3.0.1",
"lefthook": "1.4.3",
"prettier": "2.8.8"
},
"mdSeed": {
"seedersFolder": "./seeders"
}
}