-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.54 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
{
"name": "snirproject",
"version": "1.0.0",
"description": "Snirs project",
"main": "app",
"scripts": {
"start": "node app",
"dev": "NODE_ENV=development nodemon --quiet | pino-pretty -c -l -t",
"docs": "docsify serve docs",
"test": "NODE_ENV=test jest --passWithNoTests",
"test:unit": "npm test -- test/unit",
"test:integration": "npm test -- test/integration",
"test:watch": "npm test -- --watch",
"test:watch:unit": "npm run test:unit -- --watch",
"test:watch:integration": "npm run test:integration -- --watch",
"test:coverage": "npm test -- --coverage",
"test:coverage:unit": "npm run test:unit -- --coverage",
"test:coverage:integration": "npm run test:integration -- --coverage",
"lint": "eslint app test",
"lint:app": "eslint app",
"lint:test": "eslint test"
},
"dependencies": {
"@kasa/koa-logging": "^0.3.0",
"@kasa/koa-request-id": "^2.0.1",
"@koa/cors": "^3.0.0",
"date-fns": "^2.0.1",
"dotenv": "^8.0.0",
"got": "^9.6.0",
"ioredis": "^4.14.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.4.0",
"pino": "^5.13.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"codecov": "^3.5.0",
"docsify-cli": "^4.3.0",
"eslint": "^6.1.0",
"eslint-config-kasa": "^0.5.0",
"husky": "^3.0.3",
"jest": "^24.8.0",
"jest-extended": "^0.11.2",
"jest-junit": "^7.0.0",
"lint-staged": "^9.2.1",
"nodemon": "^1.19.1",
"pino-pretty": "^3.2.0",
"prettier": "^1.18.2",
"supertest": "^4.0.2"
}
}