This repository was archived by the owner on Aug 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.34 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.34 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
{
"name": "furry-winner-backend",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:kusyka911/furry-winner-backend.git",
"author": "kusyka911 <24293461+kusyka911@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"start": "node src/app.js --config .app-config.json",
"test": "better-npm-run test",
"test-watch": "better-npm-run test-watch",
"test-cov": "better-npm-run test-cov",
"lint": "eslint src"
},
"betterScripts": {
"test": {
"command": "jest",
"env": {}
},
"test-watch": {
"command": "jest --watch",
"env": {}
},
"test-cov": {
"command": "nyc jest",
"env": {}
}
},
"dependencies": {
"axios": "^0.21.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.0.0",
"rc": "^1.2.8"
},
"eslintConfig": {
"extends": [
"prettier",
"airbnb-base"
],
"env": {
"node": true,
"jest": true
}
},
"devDependencies": {
"@types/jest": "^27.0.1",
"better-npm-run": "^0.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.1.2",
"nyc": "^15.1.0",
"supertest-koa-agent": "^0.3.2"
}
}