-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.11 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "mofb-api",
"version": "2.0.0",
"description": "Columbus Helper API",
"scripts": {
"dev": "tsc-watch --preserveWatchOutput --onSuccess \"concurrently 'npm run swagger' 'node ./api/server.js | bunyan'\"",
"start": "ENV=production node ./api/server.js | bunyan",
"swagger": "swaggerGen -c ./swagger.config.json",
"build": "npm run swagger",
"lint": "eslint './**/*.ts'",
"lint:fix": "eslint --fix './**/*.ts'",
"test": "NODE_ENV=test jest --config=jest.config.js --require=test/setup-tests.ts",
"tsc": "tsc",
"gcp-build": "tsc -p . && npm run swagger",
"deploy": "gcloud app deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SCODEMeetup/mofb-api.git"
},
"keywords": [
"RESTful"
],
"author": "SCODE-API",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SCODEMeetup/mofb-api/issues"
},
"homepage": "https://github.com/SCODEMeetup/mofb-api#readme",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^25.5.4",
"prettier": "^1.18.2",
"supertest": "^4.0.2",
"ts-jest": "^25.5.1",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/bunyan": "1.8.6",
"@types/cors": "2.8.5",
"@types/dotenv": "6.1.1",
"@types/express": "4.17.0",
"@types/lodash": "4.14.134",
"@types/request-promise": "4.1.46",
"@types/swagger-ui-express": "3.0.0",
"bunyan": "1.8.12",
"concurrently": "4.1.0",
"cors": "^2.8.5",
"dotenv": "8.0.0",
"express": "4.16.3",
"lodash": "4.17.19",
"md5": "2.2.1",
"node-cache": "^4.2.0",
"request": "2.88.0",
"request-promise": "4.2.6",
"swagger-ui-express": "4.0.6",
"tsc-watch": "2.2.1",
"typescript-rest": "2.2.2",
"typescript-rest-swagger": "^1.1.5"
}
}