-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.89 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.89 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
58
59
60
61
62
63
{
"name": "DutyGenerator",
"version": "1.0.0",
"description": "[](https://travis-ci.com/pextech/DutyGenerator)",
"main": "index.js",
"scripts": {
"build": "babel src/. --out-dir build",
"start": "node build/index.js",
"test": "mocha src/tests/ --require @babel/register --timeout 5000 --exit",
"dev-start": "nodemon --exec babel-node src/index.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"migrate": "sequelize db:migrate --env development",
"cover": "nyc --reporter=html --reporter=text npm test",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pextech/DutyGenerator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pextech/DutyGenerator/issues"
},
"homepage": "https://github.com/pextech/DutyGenerator#readme",
"dependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"coveralls": "^3.1.0",
"dotenv": "^8.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"sqlite3": "^5.0.0",
"swagger-jsdoc": "^6.0.0-rc.5",
"swagger-ui-express": "^4.1.5"
},
"devDependencies": {
"request": "^2.88.2",
"nodemon": "^2.0.6",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.14.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0"
}
}