-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.73 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
75
{
"name": "adopet",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon",
"test": "cross-env NODE_ENV=test jest -c jest.config.ts --watch --silent --verbose",
"test:unit": "cross-env NODE_ENV=test jest -c unit.jest.config.ts --watch --silent --verbose",
"test:integration": "cross-env NODE_ENV=test jest -c integration.jest.config.ts --watch --verbose",
"test:coverage": "cross-env NODE_ENV=test jest -c jest.config.ts --coverage --silent ",
"test:coverage:unit": "cross-env NODE_ENV=test jest -c unit.jest.config.ts --coverage --silent ",
"test:coverage:integration": "cross-env NODE_ENV=test jest -c integration.jest.config.ts --coverage --silent ",
"typeorm": "typeorm-ts-node-commonjs",
"migration:run": "typeorm-ts-node-commonjs migration:run --dataSource ./src/database/datasource/data-source.ts",
"migration:generate": "typeorm-ts-node-commonjs migration:generate -d ./src/database/datasource/data-source.ts ./src/database/migration/update",
"migration:create": "typeorm-ts-node-commonjs migration:create ./src/database/migration/update",
"schema:drop": "typeorm-ts-node-commonjs schema:drop -d ./src/database/datasource/data-source.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecureuill/adopet.git"
},
"author": "ecureuill",
"license": "ISC",
"bugs": {
"url": "https://github.com/ecureuill/adopet/issues"
},
"homepage": "https://github.com/ecureuill/adopet#readme",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/ajv": "^1.0.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/dotenv-safe": "^8.1.2",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.5.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.15.11",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"ajv-keywords": "^5.1.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"dotenv-safe": "^8.2.0",
"express": "^4.18.2",
"flatted": "^3.2.7",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"swagger-ui-dist": "^5.3.1",
"swagger-ui-express": "^5.0.0",
"typeorm": "^0.3.14",
"yamljs": "^0.3.0"
}
}