-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
{
"name": "digital-service",
"version": "1.0.0",
"description": "API for JSON-based web service",
"main": "index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "tsnd --cls src/index.ts",
"build": "tsc",
"formatting": "prettier --check ./src",
"lint": "eslint ./src",
"test": "jest --verbose -c jest.config.js",
"test:unit": "jest --verbose -c jest.config.unit.js",
"test:integration": "jest --verbose -c jest.config.int.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/promie/digital-service"
},
"author": "Promie Yutasane",
"license": "ISC",
"bugs": {
"url": "https://github.com/promie/digital-service/issues"
},
"homepage": "https://github.com/promie/digital-service#readme",
"dependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.8",
"cors": "^2.8.5",
"express": "^4.17.1",
"pino": "^6.6.1",
"@types/pino": "^6.3.0",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.0.0-pre.62",
"tslib": "^2.3.1",
"typescript": "^4.0.2",
"pino-pretty": "^4.2.1",
"http-status": "^1.5.0"
},
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0"
}
}