-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.61 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
{
"name": "mews-news",
"version": "0.0.1",
"description": "A personalized news feed",
"main": "server/mews-news.js",
"scripts": {
"server:start": "node server/mews-news.js",
"server:start:dev": "NODE_ENV=development nodemon -e js,mst,css --watch server --watch public server/mews-news.js",
"sass:watch": "node-sass -w styles/scss -o public/css-app",
"sass:build": "node-sass styles/scss -o public/css-app --source-map true",
"server:test": "NODE_ENV=test mocha --opts server/mocha.opts 'server/**/*.test.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vic-codecamp/mews-news.git"
},
"author": "Victor Parmar",
"license": "ISC",
"homepage": "https://github.com/vic-codecamp/mews-news#readme",
"dependencies": {
"@hapi/joi": "16.1.7",
"axios": "0.19.0",
"bluebird": "3.7.1",
"body-parser": "1.19.0",
"brain.js": "2.0.0-alpha.9",
"bulma": "0.7.5",
"chance": "1.1.3",
"connect-flash": "0.1.1",
"credulous": "^0.1.0",
"dotenv": "8.1.0",
"express": "4.17.1",
"express-rate-limit": "5.0.0",
"express-session": "1.17.0",
"helmet": "3.21.1",
"moment": "2.24.0",
"mustache-express": "1.3.0",
"nanoid": "2.1.6",
"natural": "0.6.3",
"nedb": "1.8.0",
"noty": "3.2.0-beta",
"objects-to-csv": "1.3.5",
"passport": "0.4.0",
"passport-local": "1.0.0",
"session-file-store": "1.3.1",
"winston": "3.2.1"
},
"devDependencies": {
"chai": "4.2.0",
"cheerio": "1.0.0-rc.3",
"mocha": "6.2.1",
"node-sass": "4.12.0",
"release-it": "12.4.3",
"supertest": "4.0.2"
}
}