forked from fac-17/FFFF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "ffff",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"watch": "nodemon src/index.js",
"lint": "eslint .",
"test": "NODE_ENV=test nyc tape src/tests/*tests.js | tap-spec",
"db_init": "node src/model/database/db_init.js",
"scss": "node-sass --watch public/scss -o public/css",
"sass": "node-sass --watch public/sass -o public/css",
"report-coverage": " nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac-17/FFFF.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac-17/FFFF/issues"
},
"homepage": "https://github.com/fac-17/FFFF#readme",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"pg": "^7.12.1"
},
"devDependencies": {
"codecov": "^3.6.0",
"eslint": "^6.3.0",
"nock": "^11.3.3",
"node-sass": "^4.12.0",
"nodemon": "^1.19.2",
"nyc": "^14.1.1",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
}
}