forked from FAC-11/AllAboutMe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.77 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": "8.1.4"
},
"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.18.2",
"cookie-parser": "^1.4.3",
"cookie-session": "^1.3.2",
"env2": "^2.2.0",
"express": "^4.15.5",
"express-flash": "0.0.2",
"express-handlebars": "^3.0.0",
"pg": "^7.3.0",
"pg-promise": "^6.10.1",
"redis": "^2.8.0",
"sendemail": "^3.3.0",
"serve-favicon": "^2.4.5",
"tachyons-custom": "^4.6.0"
},
"devDependencies": {
"codecov": "^2.3.0",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.7.0",
"nodemon": "^1.12.1",
"nyc": "^11.2.1",
"supertest": "^3.0.0",
"tachyons-box-sizing": "^3.2.1",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
}
}