-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
74 lines (74 loc) · 2.39 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
66
67
68
69
70
71
72
73
74
{
"name": "nest-permissions-seed",
"version": "0.0.2",
"description": "A simple application demonstrating the basic usage of permissions with NestJS (JWT, PasswordHash, User, Group, Permission, ContentType)",
"repository": "https://github.com/EndyKaufman/nest-permissions-seed.git",
"engines": {
"node": ">=6",
"npm": ">=5.3.0"
},
"author": {
"name": "EndyKaufman",
"email": "[email protected]"
},
"keywords": [
"jwt",
"passwordhash",
"user",
"group",
"permission",
"contenttype",
"bootstrap",
"nestjs",
"heroku",
"typedoc"
],
"license": "MIT",
"scripts": {
"clean": "./node_modules/.bin/del-cli dist www database/sqlitedb.db",
"start": "npm run build && npm run start:prod",
"start:prod": "node index.js",
"start:watch": "nodemon",
"build": "npm run clean && npm run docs && npm run schema:sync && npm run migrate:run && tsc --pretty",
"test": "npm run build",
"migrate:create": "ts-node ./node_modules/typeorm/cli.js migrations:create",
"migrate:generate": "ts-node ./node_modules/typeorm/cli.js migrations:generate",
"migrate:run": "ts-node ./node_modules/typeorm/cli.js migrations:run",
"entity:create": "ts-node ./node_modules/typeorm/cli.js entity:create",
"schema:sync": "ts-node ./node_modules/typeorm/cli.js schema:sync",
"schema:log": "ts-node ./node_modules/typeorm/cli.js schema:log",
"docs": "./node_modules/.bin/typedoc --ignoreCompilerErrors --excludeExternals --out www src"
},
"dependencies": {
"@nestjs/common": "^4.5.9",
"@nestjs/core": "^4.5.9",
"@nestjs/microservices": "^4.5.8",
"@nestjs/swagger": "^1.1.3",
"@nestjs/testing": "^4.5.5",
"@nestjs/typeorm": "^2.0.0",
"@nestjs/websockets": "^4.5.8",
"@types/dotenv": "^4.0.2",
"@types/jsonwebtoken": "^7.2.5",
"@types/node": "^9.3.0",
"typedoc": "^0.10.0",
"ts-node": "^4.1.0",
"del-cli": "^1.1.0",
"class-transformer": "^0.1.8",
"class-validator": "^0.8.0",
"connection-string": "^0.4.1",
"dotenv": "^5.0.0",
"jsonwebtoken": "^8.1.0",
"node-django-hashers": "^1.0.9",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.5.6",
"sqlite3": "^3.1.13",
"swagger-test-templates": "^1.4.3",
"tweetnacl-util": "^0.15.0",
"typeorm": "^0.2.0-alpha.13",
"typescript": "^2.6.2"
},
"devDependencies": {
"nodemon": "^1.14.11"
}
}