-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.83 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
{
"name": "allaboutme",
"version": "1.0.0",
"description": "A Founders & Coders project in collaboration with the Anna Freud Center. Made by [Constantina](https://github.com/polyccon), [Dak](https://github.com/dangerdak), [Jen](https://github.com/Jen-Harris) & [Rebeca](https://github.com/rebecacalvoquintero)",
"main": "index.js",
"engines": {
"node": "16.5.0"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "tape ./tests/runner.js| tap-spec",
"start": "node src/index.js",
"seedDb": "node src/model/database/db_seed.js",
"buildDb": "node src/model/database/db_build.js",
"devStart": "nodemon src/index.js",
"coverage": "nyc npm test && nyc report --reporter=html && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FAC-11/AllAboutMe.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FAC-11/AllAboutMe/issues"
},
"homepage": "https://github.com/FAC-11/AllAboutMe#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"env2": "^2.2.2",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-handlebars": "^5.3.3",
"heroku-ssl-redirect": "^0.1.1",
"pg": "^8.7.1",
"pg-promise": "^10.11.0",
"redis": "^3.1.2",
"sendemail": "^3.3.0",
"serve-favicon": "^2.5.0",
"tachyons-custom": "^4.9.8"
},
"devDependencies": {
"codecov": "^3.8.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"nodemon": "^2.0.12",
"nyc": "^15.1.0",
"supertest": "^6.1.4",
"tachyons-box-sizing": "^3.2.2",
"tap-spec": "^2.2.2",
"tape": "^5.3.1",
"trim-newlines": "^3.0.1"
}
}