-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.98 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
{
"name": "fsf-p02",
"version": "0.1.0",
"description": "Full Stack Flex Project 2",
"main": "server.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext .js .",
"fix": "eslint --ignore-path .gitignore --ext .js --fix .",
"start": "node server.js",
"test": "npm run lint",
"watch": "nodemon server.js",
"heroku-postbuild": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/icn2you/fsf-p02.git"
},
"author": "Katherine Treadwell, Tamar Cabayan, Frank Flores & Christopher Zenner",
"license": "ISC",
"bugs": {
"url": "https://github.com/icn2you/fsf-p02/issues"
},
"homepage": "https://github.com/icn2you/fsf-p02#readme",
"devDependencies": {
"autoprefixer": "^9.8.0",
"css-loader": "^3.5.3",
"eslint": "^7.0.0",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"exports-loader": "^0.7.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"bootstrap": "^4.5.0",
"cookie-session": "^1.4.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^4.0.4",
"express-session": "^1.17.1",
"jquery": "^3.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.1.0",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"popper.js": "^1.16.1",
"router": "^1.3.5",
"rss-parser": "^3.8.0",
"sanitize-html": "^1.24.0",
"sanitizer": "^0.1.3",
"sequelize": "^5.21.10",
"sequelize-cli": "^5.5.1",
"validator": "^13.0.0"
}
}