-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.77 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
{
"name": "astro",
"version": "1.0.0",
"description": "",
"main": "exec.js",
"scripts": {
"start": "cross-env NODE_ENV=prod node -r ./tsconfig-paths-bootstrap.js build/exec.js",
"start:watch": "cross-env NODE_ENV=dev nodemon --watch \"**/*.ts\" --ignore \"**/*.spec.ts\" --exec \"ts-node\" -r tsconfig-paths/register exec.ts",
"start:dev": "cross-env NODE_ENV=dev ts-node -r tsconfig-paths/register exec.ts",
"start:prod": "cross-env NODE_ENV=prod ts-node -r tsconfig-paths/register exec.ts",
"generate:controller": "ts-node vendor/gen/controller.generator.ts",
"generate:model": "ts-node vendor/gen/model.generator.ts",
"generate:middleware": "ts-node vendor/gen/middleware.generator.ts",
"generate:environment": "ts-node vendor/gen/environment.generator.ts",
"build": "tsc && node ./env-factory.js",
"test:paths": "ts-node -r tsconfig-paths/register index.ts",
"db:build": "ts-node migrate.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spliitzx/astro.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/spliitzx/astro/issues"
},
"homepage": "https://github.com/spliitzx/astro#readme",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.0",
"@types/node": "^12.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cross-env": "^5.2.0",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"helmet": "^3.20.0",
"mysql": "^2.17.1",
"nodemon": "^1.19.0",
"reflect-metadata": "^0.1.13",
"run-sql-cli": "^0.1.1",
"typeorm": "^0.2.18"
},
"devDependencies": {
"chalk": "^2.4.2",
"ip": "^1.1.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.8.0",
"typescript": "^5.1.6"
}
}