-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 3.01 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "node2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf build/ && tsc && tscpaths -p tsconfig.json -s ./src -o ./build && cp -R src/resources build/resources && cp -R src/tests/files build/tests/files",
"dev": "nodemon --exec ts-node -r tsconfig-paths/register src/index.ts",
"test": "jest --config ./jest.dev.config.js --roots src/tests",
"eslint": "eslint --ext=jsx,ts,tsx 'src/**/*.{ts,tsx}'",
"ejslint": "ejslint src/resources/view/*",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config src/init/db/connectionOptions.ts",
"seeding": "ts-node -r tsconfig-paths/register ./node_modules/typeorm-seeding/dist/cli.js --configName src/init/db/connectionOptions.ts",
"prod:test": "jest --config ./jest.config.js --roots build/tests",
"db": "node ./node_modules/typeorm/cli.js --config build/init/db/connectionOptions.js",
"db:seeding": "node ./node_modules/typeorm-seeding/dist/cli.js --configName build/init/db/connectionOptions.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-typescript": "^7.10.4",
"@types/body-parser": "^1.19.0",
"@types/ejs": "^3.0.5",
"@types/express": "^4.17.8",
"@types/express-session": "^1.17.0",
"@types/faker": "^5.1.2",
"@types/i18n": "^0.8.7",
"@types/multer": "^1.4.4",
"@types/node": "^14.11.2",
"@types/nodemailer": "^6.4.0",
"@types/sharp": "^0.27.1",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@types/validatorjs": "^3.15.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"ejs-lint": "^1.1.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.4.2",
"supertest": "6.0.1",
"ts-jest": "^26.4.1",
"tsconfig-paths": "^3.9.0",
"tscpaths": "^0.0.9",
"typescript": "^4.0.3"
},
"dependencies": {
"@bugsnag/core": "^7.0.0",
"@bugsnag/js": "^7.5.1",
"@bugsnag/plugin-express": "^7.3.5",
"apollo-server-core": "^2.18.2",
"apollo-server-express": "^2.18.1",
"apollo-server-plugin-base": "^0.10.1",
"argon2": "^0.27.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"faker": "^5.1.0",
"file-type": "^16.2.0",
"graphql": "^15.3.0",
"graphql-upload": "^11.0.0",
"i18n": "^0.13.2",
"nodemailer": "^6.4.14",
"nodemon": "^2.0.4",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0-alpha.6",
"sharp": "^0.27.0",
"ts-node": "^9.0.0",
"type-graphql": "^1.0.0",
"typeorm": "^0.2.27",
"typeorm-seeding": "^1.6.1",
"uuid": "^8.3.1",
"validatorjs-decorator": "^0.0.1"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}