-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.11 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.11 KB
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
{
"name": "tamara",
"version": "1.0.0",
"author": "RyanSamman <RyanSamman@outlook.com>",
"license": "MIT",
"dependencies": {
"@types/express-slow-down": "^1.3.0",
"@types/lodash": "^4.14.168",
"body-parser": "^1.19.0",
"chalk": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-slow-down": "^1.4.0",
"express-validator": "^6.10.1",
"lodash": "^4.17.21",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.32"
},
"scripts": {
"build": "tsc",
"build:clean": "rm -r dist",
"build:watch": "yarn build --watch",
"dev": "NODE_ENV=dev nodemon src/index.ts",
"start": "NODE_ENV=prod NODE_PATH=./build node dist/index.js",
"lint": "eslint ./src",
"lint:fix": "yarn lint --fix",
"test": "NODE_ENV=CI jest --silent=false --runInBand",
"ci": "yarn lint && yarn test && yarn build",
"typeorm": "NODE_ENV=dev ts-node ./node_modules/typeorm/cli.js --config src/typeormConfig.ts",
"migration:create": "yarn typeorm migration:create",
"migration:generate": "yarn typeorm migration:generate",
"docker:build": "docker-compose build",
"docker:dev": "docker-compose -f docker-compose.yml up",
"docker:test": "docker-compose -f docker-compose.test.yml up",
"docker:prod": "docker-compose -f docker-compose.yml -f docker-compose.prod.yml up",
"docker:down": "docker-compose down"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/body-parser": "^1.19.0",
"@types/eslint": "^7.2.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.1",
"@types/pg": "^7.14.11",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel-jest": "^26.6.3",
"eslint": "^7.25.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}