-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.53 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
{
"name": "ortensia",
"version": "0.0.1",
"description": "management media release calendar",
"private": true,
"scripts": {
"build": "./node_modules/.bin/tsc",
"dev": "./node_modules/.bin/ts-node ./src/index.ts",
"start": "npm run build && ./node_modules/.bin/cross-env NODE_ENV=production node index.js",
"deploy": "npm run deploy-function && npm run deploy-cron",
"deploy-function": "npm run build && cp package.json ./dest && gcloud beta functions deploy ortensia --runtime nodejs8 --trigger-http --region asia-northeast1 --source=./dest",
"deploy-cron": "cd cron && gcloud app deploy && gcloud app deploy cron.yaml",
"test": "npm run build && mocha --timeout 10000 --reporter spec"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Mitu217/ortensia.git"
},
"author": "Mitu217",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mitu217/ortensia/issues"
},
"homepage": "https://github.com/Mitu217/ortensia#readme",
"dependencies": {
"@google-cloud/datastore": "^1.4.1",
"cheerio": "^1.0.0-rc.2",
"cross-env": "^5.2.0",
"express": "^4.16.3",
"mkdirp": "^0.5.1",
"node-fetch": "^2.2.0",
"node-uuid": "^1.4.8"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/node": "^10.7.1",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"node-mocks-http": "^1.7.0",
"proxyquire": "^2.0.1",
"sinon": "^6.1.5",
"sinon-chai": "^3.2.0",
"ts-node": "^7.0.1",
"typescript": "^2.9.2",
"vinyl-source-stream": "^2.0.0"
}
}