-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.24 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
{
"name": "kenmyo-application-server",
"version": "0.0.0",
"description": "application server for kenmyo project, responsible for authentication through cognito and forwarding request to related services",
"main": "index.js",
"scripts": {
"start": "npm run build && KENMYO_ENV=TEST:LOCAL_INTEGRATE sam local start-api",
"test": "bash -c \"scripts/test\"",
"build": "tslint -p ./tsconfig.json --fix && tsc && bash -c \"cp package.json dist \" && cd dist && npm install --production",
"clean": "bash -c \"rm -rf dist\"",
"deploy": "npm run clean && npm run build && bash -c \"scripts/deploy\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/06393993/kenmyo-application-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/06393993/kenmyo-application-server/issues"
},
"homepage": "https://github.com/06393993/kenmyo-application-server#readme",
"devDependencies": {
"@types/aws-lambda": "^8.10.9",
"@types/node": "^10.5.4",
"axios": "^0.18.0",
"mocha": "^5.2.0",
"should": "^13.2.2",
"ts-mocha": "^1.2.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
},
"dependencies": {
"falcor-router": "^0.8.3",
"moment": "^2.22.2"
}
}