rework
Showing
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.gitlab-ci.docker.yml
0 → 100644
.npmignore
0 → 100644
.prettierrc
0 → 100644
This diff is collapsed.
build/create.js
0 → 100644
build/create.js.map
0 → 100644
build/migrate.js
0 → 100644
build/migrate.js.map
0 → 100644
build/src/config.js
0 → 100644
build/src/config.js.map
0 → 100644
install-npm.sh
0 → 100755
This source diff could not be displayed because it is too large. You can view the blob instead.
| ... | @@ -5,8 +5,8 @@ | ... | @@ -5,8 +5,8 @@ |
| "main": "build/create.ts", | "main": "build/create.ts", | ||
| "scripts": { | "scripts": { | ||
| "build": "tsc", | "build": "tsc", | ||
| "create": "node build/create.ts", | "create": "node dist/create.js", | ||
| "migrate": "node build/mirate.ts" | "migrate": "node dist/migrate.js" | ||
| }, | }, | ||
| "repository": { | "repository": { | ||
| "type": "git", | "type": "git", | ||
| ... | @@ -15,14 +15,21 @@ | ... | @@ -15,14 +15,21 @@ |
| "author": "Nanahira", | "author": "Nanahira", | ||
| "license": "ISC", | "license": "ISC", | ||
| "dependencies": { | "dependencies": { | ||
| "@types/node": "^14.14.10", | |||
| "@types/qs": "^6.9.5", | "@types/qs": "^6.9.5", | ||
| "@types/underscore": "^1.10.24", | |||
| "axios": "^0.21.0", | "axios": "^0.21.0", | ||
| "moment": "^2.29.1", | "moment": "^2.29.1", | ||
| "qs": "^6.9.4", | "qs": "^6.9.4", | ||
| "typescript": "^4.1.2", | |||
| "underscore": "^1.12.0", | |||
| "yaml": "^1.10.0" | "yaml": "^1.10.0" | ||
| }, | |||
| "devDependencies": { | |||
| "@types/node": "^16.11.7", | |||
| "@typescript-eslint/eslint-plugin": "^4.33.0", | |||
| "@typescript-eslint/parser": "^4.33.0", | |||
| "eslint": "^7.32.0", | |||
| "eslint-config-prettier": "^8.3.0", | |||
| "eslint-plugin-prettier": "^3.4.1", | |||
| "lodash": "^4.17.21", | |||
| "prettier": "^2.4.1", | |||
| "typescript": "^4.4.4" | |||
| } | } | ||
| } | } |
Please register or sign in to comment