-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.98 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
{
"name": "rebost-js",
"version": "0.0.1",
"description": "Recipes, menu planner and shopping list organizer",
"author": "Ferran",
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"prestart:prod": "rm -rf dist && tsc",
"start:prod": "node dist/main.js",
"start:hmr": "node dist/server",
"test": "NODE_ENV=test jest",
"test:cov": "NODE_ENV=test jest --coverage",
"test:e2e": "NODE_ENV=test jest --config ./test/jest-e2e.json",
"webpack": "webpack --config webpack.config.js",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"typeorm:migrate": "npm run typeorm migration:generate -- -n",
"typeorm:run": "npm run typeorm migration:run"
},
"dependencies": {
"@nestjs/common": "^7.0.7",
"@nestjs/config": "^0.4.0",
"@nestjs/core": "^7.0.7",
"@nestjs/platform-express": "^7.0.7",
"@nestjs/typeorm": "^7.0.0",
"csurf": "^1.9.0",
"fastify-formbody": "^2.0.0",
"helmet": "^3.15.0",
"pg": "^7.6.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.3.3",
"typeorm": "^0.2.8",
"typescript": "^2.6.2"
},
"devDependencies": {
"@nestjs/testing": "^7.0.7",
"@types/express": "^4.0.39",
"@types/jest": "^21.1.8",
"@types/node": "^9.3.0",
"@types/supertest": "^2.0.4",
"dotenv": "^6.1.0",
"jest": "^21.2.1",
"nodemon": "^1.14.1",
"prettier": "^1.11.1",
"supertest": "^3.0.0",
"ts-jest": "^21.2.4",
"ts-loader": "^4.1.0",
"ts-node": "^4.1.0",
"tsconfig-paths": "^3.1.1",
"tslint": "5.3.2",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-node-externals": "^1.6.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
}
}