-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.3 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
{
"name": "lyxe-example",
"version": "0.1.0",
"description": "LyxeJS Example Application",
"author": "MaxRattle <[email protected]>",
"license": "MIT",
"scripts": {
"do": "lyxe do",
"do:dbg": "lyxe do --dbg=1",
"start": "lyxe dev",
"dev": "lyxe dev",
"dbg": "lyxe dev --dbg=1",
"test": "lyxe test --only",
"test:watch": "lyxe test --watch=1",
"test:dbg": "lyxe test --dbg=1 --only",
"do:prod": "cross-env NODE_ENV=production node dist/app/console.js",
"start:prod": "lyxe build && cross-env NODE_ENV=production node dist/app/web.js",
"build": "lyxe build",
"orm": "lyxe orm",
"orm:prod": "lyxe orm --prod=1",
"orm:test": "lyxe orm --test=1"
},
"dependencies": {
"@nestjs/common": "^7.0.7",
"@nestjs/core": "^7.0.7",
"@nestjs/platform-express": "^7.0.7",
"compression": "^1.7.4",
"express": "^4.17.1",
"lyxe": "^1.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.5",
"typeorm": "^0.2.25"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/node": "^10.12.0",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"prettier": "^2.0.4",
"sqlite3": "^5.0.0",
"typescript": "^3.8.3"
}
}