-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.72 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
61
{
"name": "extranet-api",
"version": "0.0.48",
"description": "Wenova extranet API",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"start:dev": "yarn nodemon src/app.js",
"test": "node scripts/bootstrap-tests.js",
"test:all": "jest test",
"test:unit": "jest test/unit",
"test:integration": "jest test/integration",
"prepare": "husky install",
"generate-test-seed-data": "node scripts/generate-seed-data.js",
"generate-jwt-signing-key": "node scripts/generate-jwt-signing-key.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/occupytheweb/wenova-extranet-api.git"
},
"author": "Alan Jean <afinegameofnil@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/occupytheweb/wenova-extranet-api/issues"
},
"homepage": "https://github.com/occupytheweb/wenova-extranet-api#readme",
"dependencies": {
"@koa/cors": "^4.0.0",
"@koa/router": "^13.0.1",
"bcrypt": "^5.1.1",
"dotenv": "^16.1.3",
"joi": "^17.8.4",
"koa": "^2.14.1",
"koa-bodyparser": "^4.4.0",
"koa-jwt": "^4.0.4",
"koa-logger": "^3.2.1",
"luxon": "^3.3.0",
"mysql2": "^3.9.4",
"njwt": "^2.0.0",
"nodemailer": "^6.9.9",
"sql-template-strings": "^2.2.2"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"colors": "^1.4.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^8.0.3",
"jest": "^29.4.3",
"lint-staged": "^13.1.2",
"mocha": "^10.2.0",
"nodemon": "^2.0.20",
"prettier": "2.8.4",
"secure-random": "^1.1.2"
},
"lint-staged": {
"*.{js,css}": "eslint --fix"
}
}