-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.44 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
62
63
64
{
"name": "retail-pm-api",
"version": "1.0.0",
"description": "Automated Web services for smart retail",
"main": "app.js",
"scripts": {
"start": "NODE_ENV=production node app",
"dev": "NODE_ENV=development nodemon app",
"test": "NODE_ENV=test jest",
"lint": "eslint --ext .js app/**/*.js",
"prettier": "prettier --write app/**/*.js"
},
"keywords": [
"koa2",
"api"
],
"repository": {
"type": "git",
"url": ""
},
"author": "Smart Retail Automation team",
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"dependencies": {
"@koa/cors": "^4.0.0",
"config": "^3.3.1",
"ioredis": "^4.17.3",
"koa": "^2.9.0",
"koa-bodyparser": "^4.3.0",
"koa-jwt": "^4.0.4",
"koa-response-time": "^2.1.0",
"koa-router": "^9.4.0",
"lodash": "^4.17.20",
"moment": "^2.27.0",
"mysql2": "^2.1.0",
"require-directory": "^2.1.1",
"sequelize": "^6.3.5",
"winston": "^3.3.3"
},
"devDependencies": {
"editorconfig": "^0.15.3",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^5.1.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.3.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"standard": "^14.3.4"
},
"license": "UNLICENSED"
}