-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
{
"name": "imcoding",
"version": "1.0.0",
"engines": {
"node": "16.x"
},
"description": "Coding blog featuring articles about WebDev",
"main": "server.js",
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"start": "node server.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"cd client && npm run start\"",
"server": "nodemon server.js",
"build": "cd client && npm install && npm run build",
"test": "mocha --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mike14747/imcoding.git"
},
"keywords": [
"node",
"javascript",
"npm",
"express",
"joi",
"mongodb",
"mocha",
"chai",
"chai-http"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mike14747/imcoding/issues"
},
"homepage": "https://imcoding.herokuapp.com/",
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"concurrently": "^6.4.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.4"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-mongo": "^3.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^4.2.0",
"joi": "^17.2.1",
"mongodb": "^3.6.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"slugify": "^1.4.5"
}
}