-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "rest-api-service",
"version": "1.0.26",
"description": "Simple RESTful Api service for Node",
"homepage": "https://github.com/colxi/rest-api-service",
"repository": {
"type": "git",
"url": "https://github.com/colxi/rest-api-service.git"
},
"keywords": [
"REST",
"RESTful",
"api",
"rest api",
"rest api service"
],
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"author": "colxi",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-request-id": "^1.4.1",
"http-shutdown": "^1.2.1",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/express-request-id": "^1.4.1",
"@types/jest": "^24.0.24",
"@types/node": "^12.12.17",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"jest-each": "^24.9.0",
"jest-extended": "^0.11.2",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"tsconfig-paths": "^3.9.0",
"tscpaths": "^0.0.9",
"typescript": "^3.7.3"
},
"scripts": {
"prepublishOnly": "yarn run test && yarn run lint && yarn run build",
"test": "jest --config jestconfig.json --coverage --forceExit",
"lint": "yarn eslint ./src/**/* --ext ts,js",
"build": "rm -rf ./dist && rm -rf ./types && tsc --project tsconfig.json && tscpaths -p tsconfig.json -s ./src -o ./dist",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node -r tsconfig-paths/register' src/index.ts"
}
}