-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.67 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
{
"name": "api-test",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"scripts": {
"start": "ts-node src/main.ts",
"dev": "nodemon",
"typeorm": "ts-node ./node_modules/typeorm/cli -f ./ormconfig.json",
"schema:sync": "npm run typeorm schema:drop && npm run typeorm schema:sync",
"docker-start-dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d",
"fixtures": "fixtures ./fixtures/test --config ormconfig.json --sync --require=ts-node/register --require=ts-node/register",
"test": "npm run fixtures && export PORT=6000; mocha --require ts-node/register ts test/**/*.spec.ts",
"test-watch": "npm run fixtures && export PORT=6000; mocha --watch --require ts-node/register --watch-extensions ts test/**/*.spec.ts"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-http": "^4.2.0",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/mocha": "^5.2.7",
"@types/node": "^8.10.66",
"chai": "^4.2.0",
"mocha": "^6.2.3",
"nodemon": "^2.0.6",
"ts-node": "3.3.0",
"typeorm-fixtures-cli": "^1.8.1",
"typescript": "3.3.3333"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"class-validator": "^0.11.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-http-context": "^1.2.4",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.3",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"pg": "^7.18.2",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.29",
"uuid": "^3.4.0"
}
}