-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.85 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
{
"name": "quote-app-api",
"version": "1.0.0",
"description": "Mind.js based API server for Quote app with all necessary CI/CD integrations",
"main": "src/main.js",
"engines": {
"node": ">=10.15.0"
},
"scripts": {
"start:env": "npm run start:env:pm2-runtime",
"start:env:pm2": "npm run pm2:kill && pm2 start ./src/main.js -i 0",
"start:env:pm2-runtime": "pm2-runtime start ./src/main.js -i 0",
"start:dev:pm2": "npm run pm2:kill && pm2 start ./src/main.js --watch=\"src\" --no-daemon --node-args=\"--inspect\" -i 1 -f",
"pm2:kill": "pm2 kill",
"lint": "eslint src --ignore-pattern \"*.spec.js\" --ignore-pattern \"*.test.js\" --ignore-pattern \"node_modules\"",
"lint:fix": "npm run lint -- --fix",
"test": "jest --config=jest.config.json",
"test:watch": "npm test -- --watch",
"test:no-coverage": "npm test -- --coverage=false",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/boale/quoteAppAPI.git"
},
"author": "Oleksandr Bondarenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/boale/quoteAppAPI/issues"
},
"homepage": "https://github.com/boale/quoteAppAPI#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@mindjs/testing": "^1.2.0",
"eslint": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^4.2.5",
"jest": "^25.3.0",
"standard-version": "^7.1.0",
"supertest": "^4.0.2"
},
"dependencies": {
"@mindjs/common": "^1.2.0",
"@mindjs/core": "^1.2.0",
"@mindjs/platform-koa": "^1.2.0",
"@mindjs/routing": "^1.2.0",
"pm2": "^4.3.0",
"quotesy": "^1.0.5"
}
}