forked from flywheel-jp/mouseion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.35 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
{
"name": "@flywheel-jp/mouseion",
"version": "0.0.0",
"description": "GCS proxy running on GAE for internal document sharing",
"author": "Yuku Takahashi <[email protected]>",
"private": true,
"engines": {
"node": "16"
},
"scripts": {
"dev": "ts-node -r dotenv/config ./src/appengine/main.ts",
"format": "run-s format:prettier format:eslint",
"format:prettier": "prettier --write '**/*.ts'",
"format:eslint": "eslint --fix '**/*.ts'",
"gcp-build": "cp .env.sample .env && tsc -p .",
"lint": "run-p lint:prettier lint:eslint",
"lint:prettier": "prettier -l '**/*.ts'",
"lint:eslint": "eslint '**/*.ts'",
"start": "node -r dotenv/config ./src/appengine/main.js",
"typecheck": "tsc --noEmit -p ."
},
"dependencies": {
"@google-cloud/storage": "^5.1.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pug": "^3.0.1"
},
"devDependencies": {
"@flywheel-jp/prettier-config": "^0.2.1",
"@types/express": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"docsify-cli": "^4.4.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"prettier": "@flywheel-jp/prettier-config"
}