forked from Sxip/critters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.54 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "critters",
"version": "0.0.1",
"description": "Box Critters private server.",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"start": "cross-env NODE_ENV=production node build/index.js",
"serve:prod": "yarn build && yarn start",
"serve:dev": "cross-env NODE_ENV=development nodemon",
"lint": "eslint --ext .ts,.js . --ignore-path .gitignore .",
"migration:create": "cross-env ts-node ./node_modules/typeorm/cli.js migration:create -n Migration -f ormconfig.ts -d src/database/migration",
"migration:generate": "cross-env ts-node ./node_modules/typeorm/cli.js migration:generate -n Migration -f ormconfig.ts -d src/database/migration",
"schema:sync": "cross-env ts-node ./node_modules/typeorm/cli.js schema:sync -f ormconfig.ts",
"migration:run": "cross-env ts-node ./node_modules/typeorm/cli.js migration:run -f ormconfig.ts",
"migration:revert": "cross-env ts-node ./node_modules/typeorm/cli.js migration:revert -f ormconfig.ts",
"seed": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed"
},
"author": "Sxip",
"license": "MIT",
"devDependencies": {
"@types/convict": "^4.2.1",
"@types/dotenv": "^8.2.0",
"@types/faker": "^4.1.11",
"@types/jsonwebtoken": "^8.3.8",
"@types/morgan": "^1.7.37",
"@types/node": "^8.0.29",
"@types/socket.io": "^2.1.4",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"nodemon": "^2.0.2",
"ts-node": "3.3.0",
"tsconfig-paths": "^3.9.0",
"typeorm-typedi-extensions": "^0.2.3",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.2",
"argon2": "^0.26.1",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.0",
"convict": "^5.2.0",
"cors": "^2.8.5",
"cross-env": "^7.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"log4js": "^6.1.2",
"morgan": "^1.9.1",
"pg": "^7.3.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.8.1-alpha.2",
"socket-controllers": "^0.0.5",
"socket.io": "^2.3.0",
"typedi": "^0.8.0",
"typeorm": "0.2.22",
"typeorm-seeding": "^1.5.0",
"uuid": "^7.0.3"
}
}