-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "elevator-pitch",
"version": "1.0.0",
"description": "Like kickstarter, but for open source projects",
"main": "server.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"seed": "node seeds/seed.js",
"start": "node server.js",
"watch": "nodemon server.js",
"lint": "npx eslint --ext .js ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmichaelbrown8/elevator-pitch.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jmichaelbrown8/elevator-pitch/issues"
},
"homepage": "https://github.com/jmichaelbrown8/elevator-pitch#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"connect-session-sequelize": "^7.1.2",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-handlebars": "^6.0.2",
"express-session": "^1.17.2",
"multer": "^1.4.4",
"marked": "^4.0.12",
"mysql2": "^2.3.3",
"nodemon": "^2.0.15",
"sanitize-html": "^2.7.0",
"sequelize": "^6.17.0"
},
"devDependencies": {
"eslint": "8.10.0",
"eslint-config-prettier": "8.4.0",
"prettier": "2.5.1",
"sequelize-cli": "^6.4.1"
}
}