forked from nestjsx/crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.96 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
{
"name": "@nestjsx/crud",
"version": "0.1.6",
"description": "Nest CRUD for RESTful APIs",
"scripts": {
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"test:e2e": "node_modules/.bin/jest --verbose --coverage --config ./jest.json --coverageReporters=text-lcov",
"pretest:e2e": "npm run test:e2e:typeorm:prepare",
"posttest:e2e": "npm run test:e2e:typeorm:clean",
"test:e2e:typeorm:prepare": "cd integration/typeorm && npm run db:sync -- -f=e2e/orm && npm run db:flush -- -f=e2e/orm && npm run db:seeds -- -f=e2e/orm",
"test:e2e:typeorm:clean": "cd integration/typeorm && npm run db:flush -- -f=e2e/orm",
"coverage": "node_modules/.bin/jest --verbose --coverage --config ./jest.json --coverageReporters=text-lcov | coveralls",
"clean": "cd dist && rm -rf `ls | grep -v \"LICENSE\\|package.json\\|README.md\"`",
"clean:typeorm": "cd integration/typeorm/node_modules/@nestjsx/crud && rm -rf *",
"update:typeorm": "cp -a ./dist/. ./integration/typeorm/node_modules/@nestjsx/crud",
"reset:typeorm": "cd integration/typeorm && npm i @nestjsx/crud@next",
"build": "node_modules/.bin/tsc",
"prebuild": "npm run clean",
"postbuild": "npm run clean:typeorm && npm run update:typeorm"
},
"dependencies": {
"@nestjs/common": "^5.5.0",
"@nestjs/core": "^5.5.0",
"@nestjs/testing": "^5.5.0",
"@nestjs/typeorm": "^5.2.2",
"class-transformer": "^0.2.0",
"class-validator": "^0.9.1",
"js-yaml": "^3.12.0",
"pg": "^7.7.1",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.3.3",
"tsconfig-paths": "^3.7.0",
"typeorm": "^0.2.9"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/node": "^10.12.12",
"@types/supertest": "^2.0.7",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"nodemon": "^1.18.7",
"supertest": "^3.3.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.2.2"
}
}