forked from kiedunne/makersbandb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.5 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.5 KB
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
{
"name": "makersbandb",
"version": "1.0.0",
"description": "",
"main": "app.js",
"directories": {
"doc": "docs",
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./bin/www",
"dev": "nodemon app.js",
"cypress:open": "cypress open",
"test:cypress:dev": "npm-run-all --parallel --race start 'cy:open -- --config baseUrl=http://localhost:3000'",
"cy:open": "cypress open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiedunne/makersbandb.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kiedunne/makersbandb/issues"
},
"homepage": "https://github.com/kiedunne/makersbandb#readme",
"dependencies": {
"acorn": "^6.0.4",
"bcrypt-nodejs": "latest",
"body-parser": "^1.18.3",
"connect-mongo": "^1.3.2",
"cookie-parser": "~1.4.3",
"cookie-session": "^2.0.0-beta.3",
"debug": "~2.6.9",
"dotenv": "^6.2.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-validator": "^5.3.0",
"http-errors": "~1.6.2",
"mongoose": "~4.13.1",
"morgan": "~1.9.0",
"pug": "2.0.0-beta11"
},
"devDependencies": {
"cross-env": "^5.2.0",
"cypress": "^3.1.3",
"eslint": "^5.9.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-cypress": "^2.1.2",
"express-session": "^1.15.6",
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.5",
"serve": "^10.1.1",
"start-server-and-test": "^1.7.11"
}
}